Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for effort (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	if err != nil {
    		return nil, err
    	}
    	all := mergeSortedSlice(serverOnly, patch, serverOrder, mergeKey, kind)
    
    	return all, nil
    }
    
    // mergeSortedSlice merges the 2 sorted lists by serverOrder with best effort.
    // It will insert each item in `left` list to `right` list. In most cases, the 2 lists will be interleaved.
    // The relative order of left and right are guaranteed to be kept.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    			if err == nil {
    				err = modfetch.WriteGoSum(ctx, keepSums(ctx, loaded, requirements, addBuildListZipSums), mustHaveCompleteRequirements())
    			}
    		}
    	}()
    
    	// Make a best-effort attempt to acquire the side lock, only to exclude
    	// previous versions of the 'go' command from making simultaneous edits.
    	if unlock, err := modfetch.SideLock(ctx); err == nil {
    		defer unlock()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    // BestEffortInferServiceMTLSMode infers the mTLS mode for the service + port from all authentication
    // policies (both alpha and beta) in the system. The function always returns MTLSUnknown for external service.
    // The result is a best effort. It is because the PeerAuthentication is workload-based, this function is unable
    // to compute the correct service mTLS mode without knowing service to workload binding. For now, this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    			if gracePeriod == 0 || *override < gracePeriod {
    				gracePeriod = *override
    				overridden = true
    			}
    		}
    	}
    	// make a best effort to default this value to the pod's desired intent, in the event
    	// the kubelet provided no requested value (graceful termination?)
    	if !overridden && gracePeriod == 0 && pod.Spec.TerminationGracePeriodSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In the past, the task would be executed with the default toolchain or JVM running the build.
    
    ==== Changes to dependency declarations in Test Suites
    
    As part of the ongoing effort to evolve Test Suites, dependency declarations in the Test Suites `dependencies` block are <<jvm_test_suite_plugin.adoc#sec:differences_with_top_level_dependencies, now strongly typed>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    	exportContentStrings := map[string]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	{"% q", '☺', `'☺'`},  // The space modifier should have no effect.
    	{"%.0q", '☺', `'☺'`}, // Specifying precision should have no effect.
    	{"%10q", '⌘', `       '⌘'`},
    	{"%+10q", '⌘', `  '\u2318'`},
    	{"%-10q", '⌘', `'⌘'       `},
    	{"%+-10q", '⌘', `'\u2318'  `},
    	{"%010q", '⌘', `0000000'⌘'`},
    	{"%+010q", '⌘', `00'\u2318'`},
    	{"%-010q", '⌘', `'⌘'       `}, // 0 has no effect when - is present.
    	{"%+-010q", '⌘', `'\u2318'  `},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	tg.setenv("GOCACHE", tg.tempdir)
    
    	tg.run("list", "-f", "{{.Export}}", "strings")
    	if tg.stdout.String() != "" {
    		t.Fatalf(".Export without -export unexpectedly set")
    	}
    	tg.run("list", "-export", "-f", "{{.Export}}", "strings")
    	file := strings.TrimSpace(tg.stdout.String())
    	if file == "" {
    		t.Fatalf(".Export with -export was empty")
    	}
    	if _, err := os.Stat(file); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

    KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-false}"
    export KUBE_CACHE_MUTATION_DETECTOR
    
    # panic the server on watch decode errors since they are considered coder mistakes
    KUBE_PANIC_WATCH_DECODE_ERROR="${KUBE_PANIC_WATCH_DECODE_ERROR:-true}"
    export KUBE_PANIC_WATCH_DECODE_ERROR
    
    # Default list of admission Controllers to invoke prior to persisting objects in cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass can be used for all direct control flow lowerings from the TensorFlow
    dialect to the SCF dialect.
    ### `-prepare-tpu-computation-for-tf-export`
    
    _Prepare TPU computation to be legal for export to TensorFlow_
    
    Prepares TPU computation module attached to _TPUCompileMlir op for
    TensorFlow graph export by making transformation such as replacing or
    removing MLIR or XLA specific attributes that are not legal in TensorFlow
    graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top