Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for getThing (0.26 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            then:
            IllegalStateException e = thrown()
            e.message == "No model node at 'thing'"
    
            where:
            state << ModelNode.State.values()
        }
    
        def "getting self closed collection defines all links but does not realise them until graph closed"() {
            given:
            def events = []
            def mmType = ModelTypes.modelMap(Bean)
    
            registry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            } else {
                type.setRedirect(iType);
            }
        }
    
        private boolean resolveAliasFromModule(ClassNode type) {
            // In case of getting a ConstructedClassWithPackage here we do not do checks for partial
            // matches with imported classes. The ConstructedClassWithPackage is already a constructed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //                         PatternRewriter &rewriter, Location loc,
    //                         Type result_type, Value input,
    //                         Value filter, Value bias) const;
    //
    // And also the following method for getting the dimension for bias tensor:
    //
    //  int64_t getBiasDim(ArrayRef<int64_t> filterShape) const;
    template <typename ConcreteType, typename TFConvOpType>
    class ConvertTFConvOp : public RewritePattern {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    		if svcInfo.NodePort() > 0 {
    			// If the preserve-destination service annotation is present, we will disable routing mesh for NodePort.
    			// This means that health services can use Node Port without falsely getting results from a different node.
    			nodePortEndpoints := hnsEndpoints
    			if svcInfo.preserveDIP || svcInfo.localTrafficDSR {
    				nodePortEndpoints = hnsLocalEndpoints
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector := cache.NewNamedReflector(reflectorName, listerWatcher, obj, watchCache, 0)
    	// Configure reflector's pager to for an appropriate pagination chunk size for fetching data from
    	// storage. The pager falls back to full list if paginated list calls fail due to an "Expired" error.
    	reflector.WatchListPageSize = storageWatchListPageSize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    	ts := newClientServerTest(t, mode, http.HandlerFunc(h)).ts
    	c := ts.Client()
    	for _, code := range []int{403, 404, 500} {
    		res, err := c.Get(fmt.Sprintf("%s/%d", ts.URL, code))
    		if err != nil {
    			t.Errorf("Error fetching /%d: %v", code, err)
    			continue
    		}
    		res.Body.Close()
    		if res.StatusCode != code {
    			t.Errorf("GET /%d: StatusCode = %d; want %d", code, res.StatusCode, code)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	t.testDeleteGracefulShorten(valid.DeepCopyObject(), createFn, getFn, expectedGrace)
    	t.testDeleteGracefulImmediate(valid.DeepCopyObject(), createFn, getFn, expectedGrace)
    }
    
    // Test getting object.
    func (t *Tester) TestGet(valid runtime.Object) {
    	t.testGetFound(valid.DeepCopyObject())
    	t.testGetNotFound(valid.DeepCopyObject())
    	t.testGetMimatchedNamespace(valid.DeepCopyObject())
    	if !t.clusterScope {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedVolumes: func() []*v1.PersistentVolume {
    				volumes := newVolumeArray("volume4-10", "10Gi", "uid4-10", "claim4-10", v1.VolumeFailed, v1.PersistentVolumeReclaimDelete, classEmpty)
    				volumes[0].Status.Message = `error getting deleter volume plugin for volume "volume4-10": no volume plugin matched`
    				return volumes
    			}(),
    			initialClaims:  noclaims,
    			expectedClaims: noclaims,
    			expectedEvents: noevents,
    			errors:         noerrors,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    		rt.setFields(t.Results())
    
    	case TSTRUCT:
    		// Make a copy of all fields, including ones whose type does not change.
    		// This prevents aliasing across functions, which can lead to later
    		// fields getting their Offset incorrectly overwritten.
    		nfs := substFields(t.Fields(), types)
    		t = t.copy()
    		t.setFields(nfs)
    	}
    
    	return t
    }
    
    func substFields(fields []*Field, types *[]*Type) []*Field {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. cmd/iam.go

    	default:
    		// Otherwise, inherit parent user's policy
    		var err error
    		policies, err = sys.PolicyDBGet(parentUser, args.Groups...)
    		if err != nil {
    			iamLogIf(GlobalContext, fmt.Errorf("error fetching policies on %s: %v", parentUser, err))
    			return false
    		}
    
    		// Finally, if there is no parent policy, check if a policy claim is
    		// present in the session token.
    		if len(policies) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top