Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 653 for behaviors (0.17 sec)

  1. src/runtime/metrics/doc.go

    		The number of non-default behaviors executed by the net package
    		due to a non-default GODEBUG=multipathtcp=... setting.
    
    	/godebug/non-default-behavior/panicnil:events
    		The number of non-default behaviors executed by the runtime
    		package due to a non-default GODEBUG=panicnil=... setting.
    
    	/godebug/non-default-behavior/randautoseed:events
    		The number of non-default behaviors executed by the math/rand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/1-time.md

    Such code should use a non-blocking receive instead.
    
    These new behaviors are only enabled when the main Go program
    is in a module with a `go.mod` `go` line using Go 1.23.0 or later.
    When Go 1.23 builds older programs, the old behaviors remain in effect.
    The new [GODEBUG setting](/doc/godebug) [`asynctimerchan=1`](/pkg/time/#NewTimer)
    can be used to revert back to asynchronous channel behaviors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

    /**
     * An optional [KotlinPlatformComponent]. The Analysis API engine does not require an optional platform component to be implemented and
     * will use sensible fallbacks or disable/avoid certain behaviors instead.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Verifies scope inheritance of direct and transitive dependencies.
     *
     * Should show three behaviors:
     *
     * 1. dependencyManagement should override the scope of transitive dependencies.
     * 2. Direct dependencies should override the scope of dependencyManagement.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. OWNERS_ALIASES

        - tallclair # Auth
        - thockin # Network
        - xing-yang # Storage
        - wojtek-t # Scalability
      # conformance aliases https://git.k8s.io/enhancements/keps/sig-architecture/20190412-conformance-behaviors.md
      conformance-behavior-approvers:
        - smarterclayton
        - johnbelamaric
        - spiffxp
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

        description: "The services live in different clusters under multi-cluster deployment model are inconsistent"
        template: "The service %v in namespace %q is inconsistent across clusters %q, which can lead to undefined behaviors. The inconsistent behaviors are: %v."
        args:
        - name: serviceName
          type: string
        - name: namespace
          type: string
        - name: clusters
          type: "[]string"
        - name: error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_device_context.cc

            // If a stream is in a bad state, it gets deleted when it's returned to
            // the stream pool, i.e. when it leaves this scope. However, a stream
            // deleting itself in a host callback on itself can cause bad behaviors
            // on some platforms. Releasing it in another stream to avoid that.
            if (!device_allows_sync_on_completion &&
                !device_to_host_stream->RefreshStatus().ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/quantize.cc

        // not quantizable. For example, for the case of custom op various ops can
        // be categorized as cusom ops despite each of them may require different
        // behaviors. In that case, these ops can be marked in the custom map and
        // treated separately in this pass.
    
        auto custom_op = llvm::dyn_cast_or_null<CustomOp>(op);
        if (!custom_op) return false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/go/script_test.go

    		// If the actual CGO_ENABLED might not match the cmd/go default, set it
    		// explicitly in the environment. Otherwise, leave it unset so that we also
    		// cover the default behaviors.
    		env = append(env, "CGO_ENABLED="+cgoEnabled)
    	}
    
    	for _, key := range extraEnvKeys {
    		if val, ok := os.LookupEnv(key); ok {
    			env = append(env, key+"="+val)
    		}
    	}
    
    	return env, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.gen.go

    	MultiClusterInconsistentService = diag.NewMessageType(diag.Warning, "IST0170", "The service %v in namespace %q is inconsistent across clusters %q, which can lead to undefined behaviors. The inconsistent behaviors are: %v.")
    )
    
    // All returns a list of all known message types.
    func All() []*diag.MessageType {
    	return []*diag.MessageType{
    		InternalError,
    		Deprecated,
    		ReferencedResourceNotFound,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top