Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 194 for Enabled (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	// Make sure existing test cases pass with feature enabled
    	TestComputePodActions(t)
    	TestComputePodActionsWithInitContainers(t)
    
    	t.Run("sidecar containers disabled", func(t *testing.T) {
    		testComputePodActionsWithInitAndEphemeralContainers(t, false)
    	})
    	t.Run("sidecar containers enabled", func(t *testing.T) {
    		testComputePodActionsWithInitAndEphemeralContainers(t, true)
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Verifies if Hyper-V should be enabled in the node
    function Test-ShouldEnableHyperVFeature {
      return "${env:WINDOWS_ENABLE_HYPERV}" -eq "true"
    }
    
    # Check if Hyper-V feature is enabled
    function Test-HyperVFeatureEnabled {
      return ((Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V).State -eq 'Enabled')
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

    		// Built-in user should be imported without errors even if LDAP is
    		// enabled.
    		allUsersFile: `{
      "foo": {
        "secretKey": "foobar123",
        "status": "enabled"
      }
    }
    `,
    		// Built-in groups should be imported without errors even if LDAP is
    		// enabled.
    		allGroupsFile: `{
      "mygroup": {
        "version": 1,
        "status": "enabled",
        "members": [
          "foo"
        ],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

      on the node's primary IPv4 and/or IPv6 address (according to the Node object).
      This is strongly recommended, if you were not previously using
      --nodeport-addresses, to avoid surprising behavior.
      
      (This behavior is enabled by default with the nftables backend; you would
      need to explicitly request `--nodeport-addresses 0.0.0.0/0,::/0` there to get
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	c.setGCPercent(gcPercent)
    	c.setMemoryLimit(memoryLimit)
    	c.commit(true) // No sweep phase in the first GC cycle.
    	// N.B. Don't bother calling traceHeapGoal. Tracing is never enabled at
    	// initialization time.
    	// N.B. No need to call revise; there's no GC enabled during
    	// initialization.
    }
    
    // startCycle resets the GC controller's state and computes estimates
    // for a new GC cycle. The caller must hold worldsema and the world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # with clang. It does not imply that CUDA support has been enabled.
    alias(
        name = "is_cuda_compiler_clang",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_compiler_clang",
            "@local_config_cuda//cuda:TRUE",
        ),
    )
    
    # Config setting that is satisfied when CUDA device code should be compiled
    # with nvcc. It does not imply that CUDA support has been enabled.
    alias(
        name = "is_cuda_compiler_nvcc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	    Examples are always run once. -count does not apply to
    	    fuzz tests matched by -fuzz.
    
    	-cover
    	    Enable coverage analysis.
    	    Note that because coverage works by annotating the source
    	    code before compilation, compilation and test failures with
    	    coverage enabled may report line numbers that don't correspond
    	    to the original sources.
    
    	-covermode set,count,atomic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/go/build/build.go

    }
    
    // matchTag reports whether the name is one of:
    //
    //	cgo (if cgo is enabled)
    //	$GOOS
    //	$GOARCH
    //	ctxt.Compiler
    //	linux (if GOOS = android)
    //	solaris (if GOOS = illumos)
    //	darwin (if GOOS = ios)
    //	unix (if this is a Unix GOOS)
    //	boringcrypto (if GOEXPERIMENT=boringcrypto is enabled)
    //	tag (if tag is listed in ctxt.BuildTags, ctxt.ToolTags, or ctxt.ReleaseTags)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				continue
    			}
    			pods = append(pods, pod)
    		}
    		return pods, nil
    	}
    	nc.podLister = podInformer.Lister()
    	nc.nodeLister = nodeInformer.Lister()
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.SeparateTaintEvictionController) {
    		logger.Info("Running TaintEvictionController as part of NodeLifecyleController")
    		tm, err := tainteviction.New(ctx, kubeClient, podInformer, nodeInformer, taintEvictionController)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    	// We need to forward these ALPNs to upstream so that the upstream can
    	// properly use an HTTP or TCP listener
    	plaintextHTTPALPNs = func() []string {
    		if features.HTTP10 {
    			// If HTTP 1.0 is enabled, we will match it
    			return []string{"http/1.0", "http/1.1", "h2c"}
    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top