Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 562 for Shardz (0.09 sec)

  1. src/cmd/compile/internal/ssa/copyelim_test.go

    		name := fmt.Sprintf("copy%d", i)
    		values = append(values, Valu(name, OpCopy, types.TypeMem, 0, nil, last))
    		last = name
    	}
    	values = append(values, Exit(last))
    	// Reverse values array to make it hard
    	for i := 0; i < len(values)/2; i++ {
    		values[i], values[len(values)-1-i] = values[len(values)-1-i], values[i]
    	}
    
    	for i := 0; i < b.N; i++ {
    		fun := c.Fun("entry", Bloc("entry", values...))
    		Copyelim(fun.f)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 23:01:51 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/init.go

    	}
    	var modPath string
    	if len(args) == 1 {
    		modPath = args[0]
    	}
    
    	modload.ForceUseModules = true
    	modload.CreateModFile(ctx, modPath) // does all the hard work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 15:51:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/io_options.go

    	"bytes"
    	"io"
    
    	"k8s.io/cli-runtime/pkg/genericiooptions"
    )
    
    // IOStreams provides the standard names for iostreams.  This is useful for embedding and for unit testing.
    // Inconsistent and different names make it hard to read and review code
    // DEPRECATED: use genericiooptions.IOStreams
    type IOStreams = genericiooptions.IOStreams
    
    // NewTestIOStreams returns a valid IOStreams and in, out, errout buffers for unit tests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pkg/registry/core/resourcequota/strategy_test.go

    				api.ResourceServices:               resource.MustParse("1"),
    				api.ResourceReplicationControllers: resource.MustParse("1"),
    				api.ResourceQuotas:                 resource.MustParse("1"),
    			},
    			Hard: api.ResourceList{
    				api.ResourceCPU:                    resource.MustParse("100"),
    				api.ResourceMemory:                 resource.MustParse("4Gi"),
    				api.ResourcePods:                   resource.MustParse("10"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 18 17:07:29 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/kubelet/checkpointmanager/README.md

    ## DISCLAIMER
    - Sig-Node community has reached a general consensus, as a best practice, to
    avoid introducing any new checkpointing support. We reached this understanding
    after struggling with some hard-to-debug issues in the production environments
    caused by the checkpointing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/WindowsOsMemoryInfo.java

                return new OsMemoryStatusSnapshot(
                    memoryInfo.getTotalPhysicalMemory(), memoryInfo.getAvailablePhysicalMemory(),
                    // Note: the commit limit is usually less than the hard limit of the commit peak, but I think it would be prudent
                    // for us to not force the user's OS to allocate more page file space, so we'll use the commit limit here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top