Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 186 for Enabled (0.41 sec)

  1. src/runtime/pprof/pprof_test.go

    		}
    	}()
    
    	// Disable on affected builders to avoid flakiness, but otherwise keep
    	// it enabled to potentially warn users that they are on a broken
    	// kernel.
    	if testenv.Builder() != "" && (runtime.GOARCH == "386" || runtime.GOARCH == "amd64") {
    		have59 := major > 5 || (major == 5 && minor >= 9)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    LogLevelRecorder logLevelRecorder = new LogLevelRecorder(logLevelThreshold);
                    ((MavenSlf4jWrapperFactory) slf4jLoggerFactory).setLogLevelRecorder(logLevelRecorder);
                    slf4jLogger.info("Enabled to break the build on log level {}.", logLevelThreshold);
                } else {
                    slf4jLogger.warn(
                            "Expected LoggerFactory to be of type '{}', but found '{}' instead. "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	// the same way that gcc would.
    	//
    	// Exception: on OS X, programs such as Shark only work with dynamic
    	// binaries, so leave it enabled on OS X (Mach-O) binaries.
    	// Also leave it enabled on Solaris which doesn't support
    	// statically linked binaries.
    	if ctxt.BuildMode == BuildModeExe {
    		if havedynamic == 0 && ctxt.HeadType != objabi.Hdarwin && ctxt.HeadType != objabi.Hsolaris {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. cmd/erasure-healing_test.go

    	}
    
    	disks := objLayer.(*erasureServerPools).serverPools[0].erasureDisks[0]
    	orgDisks := append([]StorageAPI{}, disks...)
    
    	// Enable versioning.
    	globalBucketMetadataSys.Update(ctx, bucket, bucketVersioningConfig, []byte(`<VersioningConfiguration><Status>Enabled</Status></VersioningConfiguration>`))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg.grepStdout("^q true", "q should be stale")
    	tg.grepStdout("^p false", "p should not be stale")
    }
    
    func TestCacheCoverage(t *testing.T) {
    	tooSlow(t, "links and runs a test binary with coverage enabled")
    	if gocacheverify.Value() == "1" {
    		t.Skip("GODEBUG gocacheverify")
    	}
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.setenv("GOPATH", filepath.Join(tg.pwd(), "testdata"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	BCL 20,undefined_symbol,CTR     // BCL $20,CR0LT,CTR // 4e800421
    	BCL 20,undefined_symbol+1,CTR   // BCL $20,CR0GT,CTR // 4e810421
    
    	// Verify bc encoding (without pic enabled)
    	BC $16,CR0LT,0(PC)              // 42000000
    	BCL $16,CR0LT,0(PC)             // 42000001
    	BC $18,CR0LT,0(PC)              // 42400000
    
    	MOVD SPR(3), 4(R1)              // 7fe302a6fbe10004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    		return apivalidation.ValidateImmutableField(spec.Completions, oldSpec.Completions, fldPath)
    	}
    
    	// Completions is immutable for non-indexed jobs.
    	// For Indexed Jobs, if ElasticIndexedJob feature gate is not enabled,
    	// fall back to validating that spec.Completions is always immutable.
    	isIndexedJob := spec.CompletionMode != nil && *spec.CompletionMode == batch.IndexedCompletion
    	if !isIndexedJob {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    }
    
    // TranslateCORSPolicy translates CORS policy
    func TranslateCORSPolicy(proxy *model.Proxy, in *networking.CorsPolicy) *cors.CorsPolicy {
    	if in == nil {
    		return nil
    	}
    
    	// CORS filter is enabled by default
    	out := cors.CorsPolicy{}
    	// Start from Envoy 1.30(istio 1.22), cors filter will not forward preflight requests to upstream by default.
    	// Istio start support this feature from 1.23.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceregistry_test.go

    	istiotest.SetForTest(t, &features.EnableSidecarHBONEListening, true)
    	istiotest.SetForTest(t, &features.EnableAmbient, true)
    	for _, ambient := range []bool{false, true} {
    		name := "disabled"
    		if ambient {
    			name = "enabled"
    		}
    		m := mesh.DefaultMeshConfig()
    		var nodeMeta *model.NodeMetadata
    		if ambient {
    			nodeMeta = &model.NodeMetadata{EnableHBONE: true}
    			pod = pod.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			t.Parallel()
    			nodes := tc.nodes
    			if nodes == nil {
    				nodes = []*v1.Node{workerNode}
    			}
    			testCtx := setup(t, nodes, tc.claims, tc.classes, tc.schedulings, tc.objs)
    			testCtx.p.enabled = !tc.disable
    			initialObjects := testCtx.listAll(t)
    
    			status := testCtx.p.PreEnqueue(testCtx.ctx, tc.pod)
    			t.Run("PreEnqueue", func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top