Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for spcs (0.07 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

        return subtype;
      }
    
      /**
       * Returns true if this type is a supertype of the given {@code type}. "Supertype" is defined
       * according to <a
       * href="http://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.5.1">the rules for type
       * arguments</a> introduced with Java generics.
       *
       * @since 19.0
       */
      public final boolean isSupertypeOf(TypeToken<?> type) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		},
    	}
    
    	specs := []*spec3.OpenAPI{staticSpecV3}
    	for _, v := range crd.Spec.Versions {
    		// Defaults are not pruned here, but before being served.
    		// See flag description in builder.go for flag usage
    		s, err := builder.BuildOpenAPIV3(crd, v.Name, builder.Options{})
    		if err != nil {
    			return nil, err
    		}
    		specs = append(specs, s)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    func (s *rangeState) endRange(typ event.Type) (stringID, error) {
    	st := go122.Specs()[typ].StartEv
    	idx := -1
    	for i, r := range s.inFlight {
    		if r.typ == st {
    			idx = i
    			break
    		}
    	}
    	if idx < 0 {
    		return 0, fmt.Errorf("tried to end event %v, but not in-flight", go122.Specs()[st].Name)
    	}
    	// Swap remove.
    	desc := s.inFlight[idx].desc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    				sizeclass = size_to_class128[divRoundUp(size-smallSizeMax, largeSizeDiv)]
    			}
    			size = uintptr(class_to_size[sizeclass])
    			spc := makeSpanClass(sizeclass, noscan)
    			span = c.alloc[spc]
    			v := nextFreeFast(span)
    			if v == 0 {
    				v, span, shouldhelpgc = c.nextFree(spc)
    			}
    			x = unsafe.Pointer(v)
    			if needzero && span.needzero != 0 {
    				memclrNoHeapPointers(x, size)
    			}
    			if hasHeader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Suppose you want to use a subset of a file collection.
    In that case, you can take advantage of the link:{javadocPath}/org/gradle/api/file/FileCollection.html#filter-org.gradle.api.specs.Spec-[FileCollection.filter(org.gradle.api.specs.Spec)] method to determine which files to "keep".
    In the following example, we create a new collection that consists of only the files that end with `.txt` in the source collection:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    		Namespace string
    		Grant     *k8sbeta.ReferenceGrantSpec
    	}
    	specs := make([]namespacedGrant, 0, len(r.ReferenceGrant))
    
    	for _, obj := range r.ReferenceGrant {
    		rp := obj.Spec.(*k8sbeta.ReferenceGrantSpec)
    		specs = append(specs, namespacedGrant{Namespace: obj.Namespace, Grant: rp})
    	}
    	for _, ng := range specs {
    		rp := ng.Grant
    		for _, from := range rp.From {
    			fromKey := Reference{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pkg/apis/storage/validation/validation_test.go

    		// single driver with duplicate topology keys in driver specs
    		ObjectMeta: metav1.ObjectMeta{Name: "foo11"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"key1", "key1"},
    			}},
    		},
    	}, {
    		// multiple drivers with one set of duplicate topology keys in driver specs
    		ObjectMeta: metav1.ObjectMeta{Name: "foo12"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            tasks.clear();
            tasks.addAll(names);
            return this;
        }
    
        @Override
        public GradleExecuter withDaemonIdleTimeoutSecs(int secs) {
            daemonIdleTimeoutSecs = secs;
            return this;
        }
    
        @Override
        public GradleExecuter useOnlyRequestedJvmOpts() {
            useOnlyRequestedJvmOpts = true;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	gwSvcs := make([]*Service, 0, len(svcs))
    
    	for _, s := range svcs {
    		svcHost := string(s.Hostname)
    
    		if _, ok := hostsFromGateways[svcHost]; ok {
    			gwSvcs = append(gwSvcs, s)
    		}
    	}
    
    	log.Debugf("GatewayServices: gateways len(services)=%d, len(filtered)=%d", len(svcs), len(gwSvcs))
    
    	return gwSvcs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.specs.AndSpec.and(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (AndSpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top