Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,389 for addLink (0.37 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    func PutBasedRanges(ctxt Context, sym Sym, ranges []Range) {
    	ps := ctxt.PtrSize()
    	// Write ranges.
    	for _, r := range ranges {
    		ctxt.AddInt(sym, ps, r.Start)
    		ctxt.AddInt(sym, ps, r.End)
    	}
    	// Write trailer.
    	ctxt.AddInt(sym, ps, 0)
    	ctxt.AddInt(sym, ps, 0)
    }
    
    // PutRanges writes a range table to s.Ranges.
    // All addresses in ranges are relative to s.base.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    2021-08-12T12:01:50.770+0200 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding IP addresses for network interface lo
    2021-08-12T12:01:50.771+0200 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Is this a loopback interface? true
    2021-08-12T12:01:50.771+0200 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding loopback address /0:0:0:0:0:0:0:1%lo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectContainer.java

        /**
         * Looks for an item with the given name, creating and adding it to this container if it does not exist.
         *
         * @param name The name to find or assign to the created object
         * @return The found or created object. Never null.
         */
        T maybeCreate(String name);
    
        /**
         * Creates a new item with the given name, adding it to this container, then configuring it with the given closure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. pkg/test/framework/features/README.md

    The features package defines values that are used to track feature coverage at eng.istio.io
    
    ## Labeling a Test
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. releasenotes/notes/46540.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 46540
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 05 16:46:02 UTC 2023
    - 162 bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/experimental/public/concrete_function.h

     public:
      // TODO(bmzhao): Adding ConcreteFunction::Run in subsequent CL, since
      // it depends on tensorflow::cc::Tensor and tensorflow::cc::TensorHandle
    
      // Returns FunctionMetadata associated with this ConcreteFunction.
      const FunctionMetadata* GetFunctionMetadata();
    
     private:
      friend class SavedModelAPI;
      friend class ConcreteFunctionList;
    
      // TODO(bmzhao): Consider adding a macro for wrapping/unwrapping
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultMutableAttributeContainerTest.groovy

            container.attributeProvider(testAttr, testProvider)
    
            when: "adding a set value testAttr"
            container.attribute(testAttr, "set value")
    
            then: "the set value should be retrievable"
            "set value" == container.getAttribute(testAttr)
        }
    
        def "adding lazy attribute should override replace existing attribute"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

    import org.gradle.kotlin.dsl.support.excludeMapFor
    import org.gradle.kotlin.dsl.support.mapOfNonNullValuesOf
    import org.gradle.kotlin.dsl.support.uncheckedCast
    
    
    /**
     * Creates a dependency on a module without adding it to a configuration.
     *
     * @param group the group of the module to be added as a dependency.
     * @param name the name of the module to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/test/InternalNullabilityTest.java

         * <p>
         * The annotation can be applied on the class directly, but the preferred way is to annotate the package by adding or updating the {@code package-info.java} file.
         * See {@code subprojects/core-api/src/main/java/org/gradle/package-info.java} for an example.
         * <p>
         * Note that adding the annotation for a package in one subproject will automatically apply it for the same package in all other subprojects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/property/tests/propertyKotlin.out

    Root project 'property-provider'
    ------------------------------------------------------------
    
    classpath
    No dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 328 bytes
    - Viewed (0)
Back to top