Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 87 for Everything (0.29 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//   ]
    	// }
    	//
    	// See
    	// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
    	// for more examples of label selectors.
    	//
    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    	NamespaceSelector *metav1.LabelSelector `json:"namespaceSelector,omitempty" protobuf:"bytes,1,opt,name=namespaceSelector"`
    	// ObjectSelector decides whether to run the validation based on if the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // store's PredicateFunc.
    func (e *Store) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
    	label := labels.Everything()
    	if options != nil && options.LabelSelector != nil {
    		label = options.LabelSelector
    	}
    	field := fields.Everything()
    	if options != nil && options.FieldSelector != nil {
    		field = options.FieldSelector
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		Name:      name,
    		Namespace: namespace,
    	}
    	if fun, ok := f.DefinitionMatchFuncs[key]; ok {
    		return fun(definition, a), a.GetResource(), a.GetKind(), nil
    	}
    
    	// Default is match everything
    	return f.DefaultMatch, a.GetResource(), a.GetKind(), nil
    }
    
    // Matches says whether this policy definition matches the provided admission
    // resource request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    //
    //go:nowritebarrier
    func markrootSpans(gcw *gcWork, shard int) {
    	// Objects with finalizers have two GC-related invariants:
    	//
    	// 1) Everything reachable from the object must be marked.
    	// This ensures that when we pass the object to its finalizer,
    	// everything the finalizer can reach will be retained.
    	//
    	// 2) Finalizer specials (which are not in the garbage
    	// collected heap) are roots. In practice, this means the fn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	// context as opposed to a "best effort" context. The tracebacks with
    	// callbacks only happen when everything is stopped nicely.
    	// At other times, such as when gathering a stack for a profiling signal
    	// or when printing a traceback during a crash, everything may not be
    	// stopped nicely, and the stack walk may not be able to complete.
    	gp := u.g.ptr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    You may need to copy files as well as the directory structure in which they reside.
    This is the default behavior when you specify a directory as the `from()` argument, as demonstrated by the following example that copies everything in the `reports` directory, including all its subdirectories, to the destination:
    
    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=copy-directory-example]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		link = append(link, "-o", pathf("%s/%s%s", tooldir, elem, exe))
    		targ = len(link) - 1
    	}
    	ttarg := mtime(link[targ])
    
    	// Gather files that are sources for this target.
    	// Everything in that directory, and any target-specific
    	// additions.
    	files := xreaddir(dir)
    
    	// Remove files beginning with . or _,
    	// which are likely to be editor temporary files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/profilerecord"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // NOTE(rsc): Everything here could use cas if contention became an issue.
    var (
    	// profInsertLock protects changes to the start of all *bucket linked lists
    	profInsertLock mutex
    	// profBlockLock protects the contents of every blockRecord struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. .bazelrc

    build:android_x86 --config=android
    build:android_x86 --cpu=x86
    build:android_x86 --fat_apk_cpu=x86
    build:android_x86_64 --config=android
    build:android_x86_64 --cpu=x86_64
    build:android_x86_64 --fat_apk_cpu=x86_64
    
    # Build everything statically for Android since all static libs are later
    # bundled together into a single .so for deployment.
    build:android --dynamic_mode=off
    
    # Sets the default Apple platform to macOS.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// is total mapped memory by the runtime that hasn't been released, while the latter is
    	// only heap object memory. Intuitively, the way we convert from one to the other is to
    	// subtract everything from memoryLimit that both contributes to the memory limit (so,
    	// ignore scavenged memory) and doesn't contain heap objects. This isn't quite what
    	// lines up with reality, but it's a good starting point.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top