Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 655 for IsSame (0.09 sec)

  1. src/internal/cpu/cpu_arm64_darwin.go

    }
    
    //go:noescape
    func getsysctlbyname(name []byte) (int32, int32)
    
    // sysctlEnabled should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //   - github.com/songzhibin97/gkit
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname sysctlEnabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RemoteSnapshotMetadataGenerator.java

             * processes one artifact at a time and hence cannot associate the artifacts from the same project to use the
             * same timestamp+buildno for the snapshot versions. Allowing the caller to pass in metadata from a previous
             * deployment allows to re-establish the association between the artifacts of the same project.
             */
            for (Metadata metadata : request.getMetadata()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 16 11:43:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RemoteSnapshotMetadataGenerator.java

             * processes one artifact at a time and hence cannot associate the artifacts from the same project to use the
             * same timestamp+buildno for the snapshot versions. Allowing the caller to pass in metadata from a previous
             * deployment allows to re-establish the association between the artifacts of the same project.
             */
            for (Metadata metadata : request.getMetadata()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

            })) {
          ops_depend_on_cluster.insert(&op);
        }
      }
      // The data dependency of the cluster includes the union of ops' data
      // dependency. So includes all the ops in the same cluster of the op in
      // `ops_depend_on_cluster`.
      llvm::SetVector<Operation*> same_cluster_ops_with_dependency(
          ops_depend_on_cluster.begin(), ops_depend_on_cluster.end());
      for (Operation* op : ops_depend_on_cluster) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/MultiChoiceAddressTest.groovy

            def same = new MultiChoiceAddress(id, 1234, [address1])
            def differentPort = new MultiChoiceAddress(id, 1567, [address1])
            def differentCandidates = new MultiChoiceAddress(id, 1234, [address2])
            def differentCanonical = new MultiChoiceAddress(otherId, 1234, [address1])
    
            expect:
            address Matchers.strictlyEqual(same)
            address != differentCandidates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultModuleVersionSelectorTest.groovy

            def selector = newSelector(UTIL, "1.0")
    
            def same = newSelector(UTIL, "1.0")
            def diffGroup = newSelector(DefaultModuleIdentifier.newId("foo", "util"), "1.0")
            def diffName = newSelector(DefaultModuleIdentifier.newId("org", "foo"), "1.0")
            def diffVersion = newSelector(UTIL, "2.0")
    
            expect:
            selector == same
            selector != diffGroup
            selector != diffName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_retract_rationale.txt

    cmp stdout multiline
    
    # 'go get' output should be the same whether the retraction appears at top-level
    # or in a block.
    go get example.com/retract/rationale@v1.0.0-multiline2
    stderr '^go: warning: example.com/retract/rationale@v1.0.0-multiline2: retracted by module author: short description$'
    ! stderr 'detail'
    
    # Same for 'go list'.
    go list -m -retracted -f '{{.Retracted}}' example.com/retract/rationale
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonStopEventsTest.groovy

        }
    
        def "uniqueRecentDaemonStopEvents() de-duplicates with same PID and severity"() {
            expect:
            DaemonStopEvents.uniqueRecentDaemonStopEvents([immediateStop1, immediateStop1]) == [immediateStop1]
        }
    
        def "uniqueRecentDaemonStopEvents() returns most severe event given same PIDs"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        #  You can drop additional other schemas.
        #  Elements of this map are as below:
        #   o url: (NotRequired - Default same as main schema)
        #   o schema: (Required: if empty schema means valid schema, not required)
        #   o user: (NotRequired - Default same as main schema)
        #   o password: (NotRequired - Default same as main schema)
        #   o propertiesMap: (NotRequired - Default map:{})
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/toolchain/exec.go

    	if dir == "" {
    		os.Unsetenv("GOROOT")
    	} else {
    		os.Setenv("GOROOT", dir)
    	}
    
    	// On Windows, there is no syscall.Exec, so the best we can do
    	// is run a subprocess and exit with the same status.
    	// Doing the same on Unix would be a problem because it wouldn't
    	// propagate signals and such, but there are no signals on Windows.
    	// We also use the exec case when GODEBUG=gotoolchainexec=0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top