Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for Grappler (0.13 sec)

  1. cmd/storage-rest-client.go

    }
    
    // Retrieve location indexes.
    func (client *storageRESTClient) GetDiskLoc() (poolIdx, setIdx, diskIdx int) {
    	return client.endpoint.PoolIdx, client.endpoint.SetIdx, client.endpoint.DiskIdx
    }
    
    // Wrapper to restClient.Call to handle network errors, in case of network error the connection is disconnected
    // and a healthcheck routine gets invoked that would reconnect.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    				return createKubeConfigFiles(outDir, cfg, "unknown.conf")
    			},
    			expectedError: true,
    		},
    		{ // Test CreateJoinControlPlaneKubeConfigFiles (wrapper to createKubeConfigFile)
    			name:                     "CreateJoinControlPlaneKubeConfigFiles",
    			createKubeConfigFunction: CreateJoinControlPlaneKubeConfigFiles,
    			expectedFiles: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. cmd/iam.go

    	}
    
    	select {
    	case <-sys.configLoaded:
    		return sys.store.ListSTSAccounts(ctx, accessKey)
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    }
    
    // GetServiceAccount - wrapper method to get information about a service account
    func (sys *IAMSys) GetServiceAccount(ctx context.Context, accessKey string) (auth.Credentials, *policy.Policy, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    	// ValidationAnalyzer doesn't have any of its own logic, it just wraps the schema validation.
    	// We assume that detailed testing for schema validation is being done elsewhere.
    	// Testing the ValidationAnalyzer as a wrapper is done in a separate unit test.)
    	`schema\.ValidationAnalyzer\.*`,
    }
    
    // TestAnalyzers allows for table-based testing of Analyzers.
    func TestAnalyzers(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	tlsState *tls.ConnectionState
    
    	// werr is set to the first write error to rwc.
    	// It is set via checkConnErrorWriter{w}, where bufw writes.
    	werr error
    
    	// r is bufr's read source. It's a wrapper around rwc that provides
    	// io.LimitedReader-style limiting (while reading request headers)
    	// and functionality to support CloseNotifier. See *connReader docs.
    	r *connReader
    
    	// bufr reads from r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	}
    }
    
    // https://golang.org/issues/22084
    func TestTimeoutHandlerPanicRecovery(t *testing.T) {
    	wrapper := func(h Handler) Handler {
    		return TimeoutHandler(h, time.Second, "")
    	}
    	run(t, func(t *testing.T, mode testMode) {
    		testHandlerPanic(t, false, mode, wrapper, "intentional death for testing")
    	}, testNotParallel)
    }
    
    func TestRedirectBadPath(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. cmd/erasure-multipart.go

    	result.IsTruncated = uploadIndex < len(uploads)
    
    	if !result.IsTruncated {
    		result.NextKeyMarker = ""
    		result.NextUploadIDMarker = ""
    	}
    
    	return result, nil
    }
    
    // newMultipartUpload - wrapper for initializing a new multipart
    // request; returns a unique upload id.
    //
    // Internally this function creates 'uploads.json' associated for the
    // incoming object at
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	rdsc := mustReplicate(ctx, oi.Bucket, oi.Name, getMustReplicateOptions(userDefined, oi.UserTags, "", replication.ExistingObjectReplicationType, ObjectOptions{}))
    	return c.resync(oi, rdsc, tgtStatuses)
    }
    
    // wrapper function for testability. Returns true if a new reset is requested on
    // already replicated objects OR object qualifies for existing object replication
    // and no reset requested.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    		// we set exitAfter to five minutes because we use this client configuration to request new certs - if we are unable
    		// to request new certs, we will be unable to continue normal operation. Exiting the process allows a wrapper
    		// or the bootstrapping credentials to potentially lay down new initial config.
    		closeAllConns, err := kubeletcertificate.UpdateTransport(wait.NeverStop, transportConfig, clientCertificateManager, 5*time.Minute)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.wrapper.Install$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Install.java:0)
    Class <org.gradle.wrapper.Install$InstallCheck> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Install.java:0)
    Class <org.gradle.wrapper.Install> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Install.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top