Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for pouch (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    type CustomResourceConversion struct {
    	// strategy specifies how custom resources are converted between versions. Allowed values are:
    	// - `"None"`: The converter only change the apiVersion and would not touch any other field in the custom resource.
    	// - `"Webhook"`: API Server will call to an external webhook to do the conversion. Additional information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Files.java

       *
       * @param file the file to create or update
       * @throws IOException if an I/O error occurs
       */
      @SuppressWarnings("GoodTime") // reading system time without TimeSource
      public static void touch(File file) throws IOException {
        checkNotNull(file);
        if (!file.createNewFile() && !file.setLastModified(System.currentTimeMillis())) {
          throw new IOException("Unable to update modification time of " + file);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/call.go

    				atparams, tmp := check.renameTParams(call.Pos(), asig.TypeParams().list(), asig)
    				asig = tmp.(*Signature)
    				asig.tparams = &TypeParamList{atparams} // renameTParams doesn't touch associated type parameters
    				arg.typ = asig                          // new type identity for the function argument
    				tparams = append(tparams, atparams...)
    				// add partial list of type arguments, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    type CustomResourceConversion struct {
    	// strategy specifies how custom resources are converted between versions. Allowed values are:
    	// - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource.
    	// - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. src/go/types/call.go

    				atparams, tmp := check.renameTParams(call.Pos(), asig.TypeParams().list(), asig)
    				asig = tmp.(*Signature)
    				asig.tparams = &TypeParamList{atparams} // renameTParams doesn't touch associated type parameters
    				arg.typ = asig                          // new type identity for the function argument
    				tparams = append(tparams, atparams...)
    				// add partial list of type arguments, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

    message CustomResourceConversion {
      // strategy specifies how custom resources are converted between versions. Allowed values are:
      // - `"None"`: The converter only change the apiVersion and would not touch any other field in the custom resource.
      // - `"Webhook"`: API Server will call to an external webhook to do the conversion. Additional information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. docs/pt/docs/deployment/docker.md

    Então, se seu aplicativo consumir muito memória (por exemplo, com modelos de aprendizado de máquina), e seu servidor tiver muitos núcleos de CPU **mas pouca memória**, então seu contêiner pode acabar tentando usar mais memória do que está disponível e degradar o desempenho muito (ou até mesmo travar). 🚨
    
    ### Criando um `Dockerfile`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

    message CustomResourceConversion {
      // strategy specifies how custom resources are converted between versions. Allowed values are:
      // - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource.
      // - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. src/runtime/stack.go

    		var x gclinkptr
    		if stackNoCache != 0 || thisg.m.p == 0 || thisg.m.preemptoff != "" {
    			// thisg.m.p == 0 can happen in the guts of exitsyscall
    			// or procresize. Just get a stack from the global pool.
    			// Also don't touch stackcache during gc
    			// as it's flushed concurrently.
    			lock(&stackpool[order].item.mu)
    			x = stackpoolalloc(order)
    			unlock(&stackpool[order].item.mu)
    		} else {
    			c := thisg.m.p.ptr().mcache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  10. cmd/kube-proxy/app/server.go

    	fs.StringSliceVar(&o.config.IPVS.ExcludeCIDRs, "ipvs-exclude-cidrs", o.config.IPVS.ExcludeCIDRs, "A comma-separated list of CIDRs which the ipvs proxier should not touch when cleaning up IPVS rules.")
    	fs.BoolVar(&o.config.IPVS.StrictARP, "ipvs-strict-arp", o.config.IPVS.StrictARP, "Enable strict ARP by setting arp_ignore to 1 and arp_announce to 2")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top