Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,650 for marking (0.32 sec)

  1. common-protos/k8s.io/api/batch/v1/generated.proto

      // Specifies the number of retries before marking this job failed.
      // Defaults to 6
      // +optional
      optional int32 backoffLimit = 7;
    
      // A label query over pods that should match the pod count.
      // Normally, the system sets this field for you.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    Passing property values on the command line is particularly helpful if they change more frequently.
    
    The task API supports a mechanism for marking a property to automatically generate a corresponding command line parameter with a specific name at runtime.
    
    [[sec:declaring_task_option]]
    === Step 1. Declare a command-line option
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/path/filepath/path_test.go

    		// 3) capture errors, expect two.
    		// mark respective subtrees manually
    		markTree(tree.entries[1])
    		markTree(tree.entries[3])
    		// correct double-marking of directory itself
    		tree.entries[1].mark -= errVisit
    		tree.entries[3].mark -= errVisit
    		err := walk(tree.name, markFn)
    		if err != nil {
    			t.Fatalf("expected no error return from Walk, got %s", err)
    		}
    		if len(errors) != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    // but on the contention path they sleep in the kernel.
    // A zeroed Mutex is unlocked (no need to initialize each lock).
    // Initialization is helpful for static lock ranking, but not required.
    type mutex struct {
    	// Empty struct if lock ranking is disabled, otherwise includes the lock rank
    	lockRankStruct
    	// Futex-based impl treats it as uint32 key,
    	// while sema-based impl as M* waitm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. pkg/controller/tainteviction/taint_eviction_test.go

    					Kind:       "Pod",
    					APIVersion: "v1",
    					Namespace:  "test",
    					Name:       "test",
    				},
    				Reason:  "TaintManagerEviction",
    				Type:    "Normal",
    				Count:   1,
    				Message: "Marking for deletion Pod test/test",
    				Source:  corev1.EventSource{Component: "nodeControllerTest"},
    			},
    		}
    		if diff := cmp.Diff(want, recorder.Events, cmp.FilterPath(f, cmp.Ignore())); len(diff) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/engine.go

    // shell.
    //
    // # Script Language
    //
    // Each line of a script is parsed into a sequence of space-separated command
    // words, with environment variable expansion within each word and # marking an
    // end-of-line comment. Additional variables named ':' and '/' are expanded
    // within script arguments (expanding to the value of os.PathListSeparator and
    // os.PathSeparator respectively) but are not inherited in subprocess
    // environments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    tasks.register("run") {
        group = "Application"
        description = "Runs this project as a JVM application."
    }
    ----
    =====
    ====
    
    [[sec:hidden_tasks]]
    == Private and hidden tasks
    
    Gradle doesn't support marking a task as _private_.
    
    However, tasks will only show up when running `:tasks` if `task.group` is set or no other task depends on it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	span.freeIndexForScan = span.freeindex
    
    	// Allocate black during GC.
    	// All slots hold nil so no scanning is needed.
    	// This may be racing with GC so do it atomically if there can be
    	// a race marking the bit.
    	if gcphase != _GCoff {
    		gcmarknewobject(span, uintptr(x))
    	}
    
    	if raceenabled {
    		racemalloc(x, size)
    	}
    
    	if msanenabled {
    		msanmalloc(x, size)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    In order to handle volatile inputs for your tasks consider <<incremental_build.adoc#sec:configure_input_normalization,configuring input normalization>>.
    
    [[sec:task_output_caching_disabled_by_default]]
    === Marking tasks as non-cacheable by default
    
    There are certain tasks that don't benefit from using the build cache.
    One example is a task that only moves data around the file system, like a `Copy` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    		opCallback     func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error
    		verifyCallback func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error
    	}{
    		{
    			name: "marking volume mounted should remove volume from found during reconstruction",
    			opCallback: func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error {
    				volumeOpts.VolumeMountState = operationexecutor.VolumeMounted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top