Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for getThing (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === [4.5] `HttpBuildCache` no longer follows redirects
    
    When connecting to an HTTP build cache backend via `HttpBuildCache`, Gradle does not follow redirects any more, treating them as errors instead.
    Getting a redirect from the build cache backend is mostly a configuration error — using an "http" URL instead of "https" for example — and has negative effects on performance.
    
    [[rel4.4:security_library_upgrades]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    		s.searchAddrBg.StoreMarked(s.freeHWM.addr())
    	}
    	s.freeHWM = minOffAddr
    }
    
    // setEmpty marks that the scavenger has finished looking at ci
    // for now to prevent the scavenger from getting stuck looking
    // at the same chunk.
    //
    // setEmpty may only run concurrently with find.
    func (s *scavengeIndex) setEmpty(ci chunkIdx) {
    	val := s.chunks[ci].load()
    	val.setEmpty()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    				testenv.SkipFlaky(t, 43120)
    			}
    			t.Errorf("error string = %q; missing timeout substring", got)
    		}
    
    		break
    	}
    }
    
    // Client.Timeout firing before getting to the body
    func TestClientTimeout_Headers(t *testing.T) { run(t, testClientTimeout_Headers) }
    func testClientTimeout_Headers(t *testing.T, mode testMode) {
    	donec := make(chan bool, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top