Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,352 for notC (0.09 sec)

  1. pilot/pkg/networking/util/util.go

    			// per the docs, port level policies do not inherit and instead to defaults if not provided
    			portTrafficPolicy = p
    			break
    		}
    	}
    	if portTrafficPolicy == nil {
    		return policy, false
    	}
    
    	// Note that port-level settings will override the destination-level settings.
    	// Traffic settings specified at the destination-level will not be inherited when overridden by port-level settings,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		}
    		// This means that during reinvocation, a webhook will not be
    		// called for the first time. For example, if the webhook is
    		// skipped in the first round because of mismatching labels,
    		// even if the labels become matching, the webhook does not
    		// get called during reinvocation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. hack/lib/golang.sh

    }
    
    kube::golang::setup_gomaxprocs() {
      # GOMAXPROCS by default does not reflect the number of cpu(s) available
      # when running in a container, please see https://github.com/golang/go/issues/33803
      if [[ -z "${GOMAXPROCS:-}" ]]; then
        if ! command -v ncpu >/dev/null 2>&1; then
          go -C "${KUBE_ROOT}/hack/tools" install ./ncpu || echo "Will not automatically set GOMAXPROCS"
        fi
        if command -v ncpu >/dev/null 2>&1; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            val scheduledNodeIds = HashMap<Node, Int>(nodeCount)
            // Not all entry nodes are always scheduled.
            // In particular, it happens when the entry node is a task of the included plugin build that runs as part of building the plugin.
            // Such tasks do not rerun when configuration cache is re-used, even if specified on the command line.
            // Not restoring them as entry points doesn't affect the resulting execution plan.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    
    # Name of the saved model assets directory.
    _ASSETS_DIR = 'assets'
    _ASSETS_EXTRA_DIR = 'assets.extra'
    
    # Type variable for a type that is not `None`. This represents a return value of
    # methods in `PyFunctionLibrary` that should not be `None`, as `None` represents
    # that the execution was unsucessful, transfored as `std::nullopt_t` from c++.
    NotNoneT = TypeVar('NotNoneT')
    
    
    def _get_saver_def_or_none(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. src/go/types/infer.go

    				// t0 was simplified to t1.
    				// If t0 was a generic function, but the simplified signature t1 does
    				// not contain any type parameters anymore, the function is not generic
    				// anymore. Remove it's type parameters. (go.dev/issue/59953)
    				// Note that if t0 was a signature, t1 must be a signature, and t1
    				// can only be a generic signature if it originated from a generic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/main.go

    	if *flagBuildid == "" && ctxt.Target.IsOpenbsd() {
    		// TODO(jsing): Remove once direct syscalls are no longer in use.
    		// OpenBSD 6.7 onwards will not permit direct syscalls from a
    		// dynamically linked binary unless it identifies the binary
    		// contains a .note.go.buildid ELF note. See issue #36435.
    		*flagBuildid = "go-openbsd"
    	}
    
    	// enable benchmarking
    	var bench *benchmark.Metrics
    	if len(*benchmarkFlag) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. pkg/test/framework/suite.go

    	// Otherwise it stops test execution.
    	//
    	// Deprecated: Tests should not make assumptions about number of clusters.
    	RequireMinClusters(minClusters int) Suite
    	// RequireMaxClusters ensures that the current environment contains at least the given number of clusters.
    	// Otherwise it stops test execution.
    	//
    	// Deprecated: Tests should not make assumptions about number of clusters.
    	RequireMaxClusters(maxClusters int) Suite
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/runtime/traceruntime.go

    // tracer why a goroutine blocked. The tracer then propagates this information
    // into the trace however it sees fit.
    //
    // Note that traceBlockReasons should not be compared, since reasons that are
    // distinct by name may *not* be distinct by value.
    type traceBlockReason uint8
    
    const (
    	traceBlockGeneric traceBlockReason = iota
    	traceBlockForever
    	traceBlockNet
    	traceBlockSelect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. pkg/log/options.go

    	// rotated. It defaults to 100 megabytes.
    	RotationMaxSize int
    
    	// RotationMaxAge is the maximum number of days to retain old log files based on the
    	// timestamp encoded in their filename. Note that a day is defined as 24
    	// hours and may not exactly correspond to calendar days due to daylight
    	// savings, leap seconds, etc. The default is to remove log files
    	// older than 30 days.
    	RotationMaxAge int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top