Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 207 for INITIALIZING (0.19 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    }
    
    func (f Form) doAppend(out []byte, src input, n int) []byte {
    	if n == 0 {
    		return out
    	}
    	ft := formTable[f]
    	// Attempt to do a quickSpan first so we can avoid initializing the reorderBuffer.
    	if len(out) == 0 {
    		p, _ := ft.quickSpan(src, 0, n, true)
    		out = src.appendSlice(out, 0, p)
    		if p == n {
    			return out
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. pkg/scheduler/metrics/resources/resources_test.go

    				kube_pod_resource_request{namespace="test",node="node-one",pod="foo",priority="",resource="custom",scheduler="",unit=""} 3
    				`,
    		},
    		{
    			name: "init containers and regular containers when initializing",
    			pods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo"},
    					Spec: v1.PodSpec{
    						NodeName: "node-one",
    						InitContainers: []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	webhook, err := pluginwebhook.NewBackend(o.ConfigFile, groupVersion, webhook.DefaultRetryBackoffWithInitialDelay(o.InitialBackoff), customDial)
    	if err != nil {
    		return nil, fmt.Errorf("initializing audit webhook: %v", err)
    	}
    	webhook = o.BatchOptions.wrapBackend(webhook)
    	return webhook, nil
    }
    
    // defaultWebhookBatchConfig returns the default BatchConfig used by the Webhook backend.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    if (!componentMetaDataResolver.isFetchingMetadataCheap(targetComponent.getComponentId())) {
                        // Avoid initializing the list if there are no components requiring download (a common case)
                        if (requiringDownload == null) {
                            requiringDownload = new ArrayList<>();
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. cmd/object-api-utils_test.go

    	credentials auth.Credentials, t *testing.T,
    ) {
    	if err := newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    		t.Fatalf("Initializing config.json failed")
    	}
    
    	objectName := `\../.minio.sys/config/hello.txt`
    
    	// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    	rec := httptest.NewRecorder()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/runtime/stubs.go

    func goexit(neverCallThisFunction)
    
    // publicationBarrier performs a store/store barrier (a "publication"
    // or "export" barrier). Some form of synchronization is required
    // between initializing an object and making that object accessible to
    // another processor. Without synchronization, the initialization
    // writes and the "publication" write may be reordered, allowing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/op.go

    // fail3: CALL panicSlice3C (a, b)
    //
    // When we register allocate that code, we want the same register to be used for
    // the first arg of panicSlice3Acap and the second arg to panicSlice3B. That way,
    // initializing that register once will satisfy both calls.
    // That desire ends up dividing the set of bounds check calls into 3 sets. This function
    // determines which set to use for a given panic call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	c.initOnce.Do(c.initWork)
    	return c.initErr
    }
    
    // initWork does the actual initialization work.
    func (c *Client) initWork() {
    	defer func() {
    		if c.initErr != nil {
    			c.initErr = fmt.Errorf("initializing sumdb.Client: %v", c.initErr)
    		}
    	}()
    
    	c.tileReader.c = c
    	if c.tileHeight == 0 {
    		c.tileHeight = 8
    	}
    	c.tileSaved = make(map[tlog.Tile]bool)
    
    	vkey, err := c.ops.ReadConfig("key")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

    public class EnumsBenchmark {
    
      @Param({"Small", "Medium", "Large"})
      String enumSize;
    
      @Param({"0.2", "0.8"})
      float hitRate;
    
      // We could avoid the raw type here by initializing this with a ternary (? SmallEnum.class : ...).
      // However, we end up needing a raw type in getIfPresent, as discussed there.
      @SuppressWarnings("rawtypes")
      private Class<? extends Enum> enumType;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

    public class EnumsBenchmark {
    
      @Param({"Small", "Medium", "Large"})
      String enumSize;
    
      @Param({"0.2", "0.8"})
      float hitRate;
    
      // We could avoid the raw type here by initializing this with a ternary (? SmallEnum.class : ...).
      // However, we end up needing a raw type in getIfPresent, as discussed there.
      @SuppressWarnings("rawtypes")
      private Class<? extends Enum> enumType;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top