Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for Intersect (0.16 sec)

  1. src/runtime/metrics/doc.go

    The set of metrics defined by this package may evolve as the runtime itself
    evolves, and also enables variation across Go implementations, whose relevant
    metric sets may not intersect.
    
    # Interface
    
    Metrics are designated by a string key, rather than, for example, a field name in
    a struct. The full list of supported metrics is always available in the slice of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    	CLONE_CLEAR_SIGHAND = 0x100000000 // Clear any signal handler and reset to SIG_DFL.
    	CLONE_INTO_CGROUP   = 0x200000000 // Clone into a specific cgroup given the right permissions.
    
    	// Cloning flags intersect with CSIGNAL so can be used with unshare and clone3
    	// syscalls only:
    
    	CLONE_NEWTIME = 0x00000080 // New time namespace
    )
    
    // SysProcIDMap holds Container ID to Host ID mappings used for User Namespaces in Linux.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    	}
    	return types.True
    }
    
    // Add for a map list `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    // are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
    // non-intersecting keys are appended, retaining their partial order.
    func (t *unstructuredMapList) Add(other ref.Val) ref.Val {
    	oMapList, ok := other.(traits.Lister)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. src/text/scanner/scanner.go

    	Whitespace uint64
    
    	// IsIdentRune is a predicate controlling the characters accepted
    	// as the ith rune in an identifier. The set of valid characters
    	// must not intersect with the set of white space characters.
    	// If no IsIdentRune function is set, regular Go identifiers are
    	// accepted instead. The field may be changed at any time.
    	IsIdentRune func(ch rune, i int) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

            @Override
            public <S extends T> Index<S> filter(Spec<String> nameFilter, CollectionFilter<S> collectionFilter) {
                return new FilteredIndex<>(
                    delegate,
                    Specs.intersect(this.nameFilter, nameFilter),
                    this.elementFilter.and(collectionFilter)
                );
            }
    
            @Nullable
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
      //     are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
      //     non-intersecting keys are appended, retaining their partial order.
      // Required.
      optional string Expression = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    ** If there are only ranges, the selection will depend on the intersection of ranges:
    *** If all the ranges intersect, then the highest _existing_ version of the intersection will be selected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	//   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    	//     are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
    	//     non-intersecting keys are appended, retaining their partial order.
    	//
    	// If `rule` makes use of the `oldSelf` variable it is implicitly a
    	// `transition rule`.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	//   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    	//     are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
    	//     non-intersecting keys are appended, retaining their partial order.
    	//
    	// If `rule` makes use of the `oldSelf` variable it is implicitly a
    	// `transition rule`.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	"message":           "Message represents the message displayed when validation fails. The message is required if the Expression contains...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
Back to top