Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for zeroing (0.17 sec)

  1. src/net/http/client_test.go

    			// Relative redirect.
    			if r.Host != virtualHost {
    				t.Errorf("Serving /: Request.Host = %#v; want %#v", r.Host, virtualHost)
    				w.WriteHeader(404)
    				return
    			}
    			w.Header().Set("Location", "/hop")
    			w.WriteHeader(302)
    		case "/hop":
    			// Absolute redirect.
    			if r.Host != virtualHost {
    				t.Errorf("Serving /hop: Request.Host = %#v; want %#v", r.Host, virtualHost)
    				w.WriteHeader(404)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                DefaultModuleDescriptor md = getMd();
                for (Configuration configuration : configurations) {
                    LOGGER.debug("Merging configuration with: {}", configuration.getName());
                    //copy configuration from parent descriptor
                    md.addConfiguration(new Configuration(configuration, sourceMrid));
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		return nil, err
    	}
    	return info.storages[info.storageVersion].CustomResource, nil
    }
    
    // getOrCreateServingInfoFor gets the CRD serving info for the given CRD UID if the key exists in the storage map.
    // Otherwise the function fetches the up-to-date CRD using the given CRD name and creates CRD serving info.
    func (r *crdHandler) getOrCreateServingInfoFor(uid types.UID, name string) (*crdInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    }
    
    type filterWithAttrsFunc func(key string, l labels.Set, f fields.Set) bool
    
    type indexedTriggerFunc struct {
    	indexName   string
    	indexerFunc storage.IndexerFunc
    }
    
    // Cacher is responsible for serving WATCH and LIST requests for a given
    // resource from its internal cache and updating its cache in the background
    // based on the underlying storage contents.
    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. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"preferredVersion":           "preferredVersion is the version preferred by the API server, which probably is the storage version.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	if state.loggingLevel > 1 {
    		// The logf below would cause preds to be heap-allocated if
    		// it were passed directly.
    		preds2 := make([]*Block, len(preds))
    		copy(preds2, preds)
    		state.logf("Merging %v into %v (changed=%d, checked=%d)\n", preds2, b, locs.lastChangedTime, locs.lastCheckedTime)
    	}
    
    	state.changedVars.clear()
    
    	markChangedVars := func(slots, merged abt.T) {
    		if !forLocationLists {
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // but merges the input shape with the existing shape.  For example,
    // setting a shape of [-1, 2] with an existing shape [2, -1] would set
    // a final shape of [2, 2] based on shape merging semantics.
    //
    // Returns an error into `status` if:
    //   * `output` is not in `graph`.
    //   * An invalid shape is being set (e.g., the shape being set
    //     is incompatible with the existing shape).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Kube-apiserver: http/2 serving can be disabled with a `--disable-http2-serving` flag ([#122176](https://github.com/kubernetes/kubernetes/pull/122176), [@slashpai](https://github.com/slashpai)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // probably is the storage version.
      // +optional
      optional GroupVersionForDiscovery preferredVersion = 3;
    
      // a map of client CIDR to server address that is serving this group.
      // This is to help clients reach servers in the most network-efficient way possible.
      // Clients can use the appropriate server address as per the CIDR that they match.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // probably is the storage version.
      // +optional
      optional GroupVersionForDiscovery preferredVersion = 3;
    
      // a map of client CIDR to server address that is serving this group.
      // This is to help clients reach servers in the most network-efficient way possible.
      // Clients can use the appropriate server address as per the CIDR that they match.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top