Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for Implementation (0.17 sec)

  1. src/crypto/tls/common.go

    	// unmarshal to create the message. If the message was not produced by
    	// unmarshal, it should return nil.
    	originalBytes() []byte
    }
    
    // lruSessionCache is a ClientSessionCache implementation that uses an LRU
    // caching strategy.
    type lruSessionCache struct {
    	sync.Mutex
    
    	m        map[string]*list.Element
    	q        *list.List
    	capacity int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    	// but has been observed enough in the world that we don't want to break it.
    	//
    	// The server is setting "Content-Encoding: gzip",
    	// wrapping the ResponseWriter in an implementation which gzips data written to it,
    	// and passing this ResponseWriter to ServeFile.
    	//
    	// This means ServeFile cannot properly set a Content-Length header, because it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    		},
    	}
    }
    
    // After adding reconciliation, if status in pod manager is different from the cached status, a reconciliation
    // will be triggered, which will mess up all the old unit test.
    // To simplify the implementation of unit test, we add testSyncBatch() here, it will make sure the statuses in
    // pod manager the same with cached ones before syncBatch(true) so as to avoid reconciling.
    func (m *manager) testSyncBatch() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    			&goTest{
    				variant: "osusergo",
    				timeout: 300 * time.Second,
    				tags:    []string{"osusergo"},
    				pkg:     "os/user",
    			})
    		t.registerTest("hash/maphash purego implementation",
    			&goTest{
    				variant: "purego",
    				timeout: 300 * time.Second,
    				tags:    []string{"purego"},
    				pkg:     "hash/maphash",
    			})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if err != nil {
    		return nil, err
    	}
    
    	return newRuntimeVersion(typedVersion.RuntimeVersion)
    }
    
    // APIVersion returns the cached API version information of the container
    // runtime. Implementation is expected to update this cache periodically.
    // This may be different from the runtime engine's version.
    func (m *kubeGenericRuntimeManager) APIVersion() (kubecontainer.Version, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      map<string, string> limits = 1;
    
      // The minimum amount of compute resources required. If Requests is omitted for a container,
      // it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value.
      // More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
      map<string, string> requests = 2;
    }
    
    // Mirrors ServiceAccount for unmarshaling.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Moved remote CRI implementation from kubelet to `k8s.io/cri-client` repository. ([#124634](https://github.com/kubernetes/kubernetes/pull/124634), [@saschagrunert](https://github.com/saschagrunert)) [SIG Node, Release and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. src/time/time.go

    // zones. By comparison, it's reasonable to mishandle some times in
    // the year -292277022399.
    //
    // All this is opaque to clients of the API and can be changed if a
    // better implementation presents itself.
    
    const (
    	// The unsigned zero year for internal calculations.
    	// Must be 1 mod 400, and times before it will not compute correctly,
    	// but otherwise can be changed at will.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	// sleepStub is a stub used for testing to avoid actually having
    	// the scavenger sleep.
    	//
    	// Unlike the other stubs, this is not populated if left nil
    	// Instead, it is called when non-nil because any valid implementation
    	// of this function basically requires closing over this scavenger
    	// state, and allocating a closure is not allowed in the runtime as
    	// a matter of policy.
    	sleepStub func(n int64) int64
    
    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/main/java/jcifs/smb/SmbFile.java

         */
    
        @Override
        public String toString () {
            return Strings.maskSecretValue(url.toString());
        }
    
    
        /* URLConnection implementation */
        /**
         * This URLConnection method just returns the result of <tt>length()</tt>.
         *
         * @return the length of this file or 0 if it refers to a directory
         */
        @Deprecated
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top