Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for identity1 (0.22 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

        def setup() {
            requireOwnGradleUserHomeDir("Artifact transforms should run every time and not be shared between tests")
    
            // group name is included in the capabilities of components, which are part of the transform identity
            buildFile << """
                allprojects {
                    group = "colored"
                }
            """
    
            printTaskOnlyExecutionPlan()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// equality checking.
    				"type(self) == type(self)":                                     5,
    				"type(self.nestedInMap['k1']) == type(self.nestedInMap['k2'])": 9,
    			},
    		},
    		{name: "listMaps with unsupported identity characters in property names",
    			obj: map[string]interface{}{
    				"objs": []interface{}{
    					[]interface{}{
    						map[string]interface{}{"k!": "a", "k.": "1"},
    						map[string]interface{}{"k!": "b", "k.": "2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    					runOnHost:   true,
    				},
    			)
    		}
    	}
    }
    
    // addTest adds an arbitrary test callback to the test list.
    //
    // name must uniquely identify the test and heading must be non-empty.
    func (t *tester) addTest(name, heading string, fn func(*distTest) error) {
    	if t.testNames[name] {
    		panic("duplicate registered test name " + name)
    	}
    	if heading == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    			// e.g. for [5]int{1,2,3} and [100]int{1,2,3}, the data is same
    			// (although the size is different).
    			// Also, for short symbols, the content hash is the identity function of
    			// the 8 bytes, and trailing zeros doesn't change the hash value, e.g.
    			// hash("A") == hash("A\0\0\0").
    			// So when two symbols have the same hash, we need to use the one with
    			// larger size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

     *  **Proxy authenticators are now asked for preemptive authentication.** OkHttp will now request
        authentication credentials before creating TLS tunnels through HTTP proxies (HTTP `CONNECT`).
        Authenticators should identify preemptive authentications by the presence of a challenge whose
        scheme is "OkHttp-Preemptive".
    
     *  **OkHttp now offers full-operation timeouts.** This sets a limit on how long the entire call may
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    //              The distinction between an empty array of operations and no
    //              array of operations is necessary to distinguish the case of
    //              creating a function with no body (e.g. identity or permutation)
    //              and the case of creating a function whose body contains all
    //              the nodes in the graph (except for the automatic skipping, see
    //              below).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Avoid upgrading Gradle and migrating to Kotlin DSL at the same time in order to ease troubleshooting in case of potential issues.
     . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    If there are no warnings, the Deprecations tab will not appear.
    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        for (const auto& arg : args_by_src_) {
          arg_source_tensors.at(arg.second) = arg.first;
        }
        // Initialize the input and output permutations to the identity.
        std::vector<int> input_permutation(args_by_src_.size());
        std::iota(input_permutation.begin(), input_permutation.end(), 0);
        std::vector<int> output_permutation(results_.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. src/go/build/build.go

    func (ctxt *Context) shouldBuild(content []byte, allTags map[string]bool) (shouldBuild, binaryOnly bool, err error) {
    	// Identify leading run of // comments and blank lines,
    	// which must be followed by a blank line.
    	// Also identify any //go:build comments.
    	content, goBuild, sawBinaryOnly, err := parseFileHeader(content)
    	if err != nil {
    		return false, false, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    	for _, n := range f.Name {
    		if n.Kind == "func" {
    			functions[n.Go] = false
    		}
    	}
    
    	// Now that we have all the name types filled in,
    	// scan through the Refs to identify the ones that
    	// are trying to do a ,err call. Also check that
    	// functions are only used in calls.
    	for _, r := range f.Ref {
    		if r.Name.IsConst() && r.Name.Const == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top