Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 174 for cleaning (0.26 sec)

  1. pkg/kubelet/server/server_test.go

    				return
    			}
    
    			conn, err := upgradeRoundTripper.NewConnection(resp)
    			require.NoError(t, err, "creating streaming connection")
    			defer conn.Close()
    
    			h := http.Header{}
    			h.Set(api.StreamType, api.StreamTypeError)
    			_, err = conn.CreateStream(h)
    			require.NoError(t, err, "creating error stream")
    
    			if test.stdin {
    				h.Set(api.StreamType, api.StreamTypeStdin)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    }
    
    func createTestDir(t *testing.T, path string) {
    	if err := os.MkdirAll(path, 0750); err != nil {
    		t.Fatalf("error creating test dir: %v", err)
    	}
    }
    
    func writeTestFile(t *testing.T, path string, contents string) {
    	if err := os.WriteFile(path, []byte(contents), 0644); err != nil {
    		t.Fatalf("error creating test file %#v", err)
    	}
    }
    
    func TestFilenameOptionsValidate(t *testing.T) {
    	testcases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/BUILD

        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    package_group(
        name = "friends",
        packages = [
            "//learning/brain/experimental/mlir/tflite/tfmrt/...",
            "//learning/brain/mlir/...",
            "//third_party/iree/...",
            "//third_party/odml/infra/...",
            "//tensorflow/compiler/mlir/...",
            "//tensorflow/lite/python/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:creating_uber_jar_example]]
    == Creating "uber" or "fat" JARs
    
    In Java, applications and their dependencies were typically packaged as separate JARs within a single distribution archive.
    That still happens, but another approach that is now common is placing the classes and resources of the dependencies directly into the application JAR, creating what is known as an Uber or fat JAR.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    	eventRecorder    record.EventRecorder
    
    	podControl controller.PodControlInterface
    	crControl  controller.ControllerRevisionControlInterface
    
    	// An dsc is temporarily suspended after creating/deleting these many replicas.
    	// It resumes normal action after observing the watch events for them.
    	burstReplicas int
    
    	// To allow injection of syncDaemonSet for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      cd $LOGGINGAGENT_ROOT
    
      Log-Output "Creating service: ${LOGGINGAGENT_SERVICE}"
      sc.exe create $LOGGINGAGENT_SERVICE binpath= "${LOGGINGAGENT_ROOT}\bin\fluent-bit.exe -c \fluent-bit\conf\fluent-bit.conf"
      sc.exe failure $LOGGINGAGENT_SERVICE reset= 30 actions= restart/5000
      Write-VerboseServiceInfoToConsole -Service $LOGGINGAGENT_SERVICE
    
      Log-Output "Creating service: ${LOGGINGEXPORTER_SERVICE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/time/format.go

    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    	Raw []byte
    
    	// SerialNumber represents the serial number of a revoked certificate. It is
    	// both used when creating a CRL and populated when parsing a CRL. It must not
    	// be nil.
    	SerialNumber *big.Int
    	// RevocationTime represents the time at which the certificate was revoked. It
    	// is both used when creating a CRL and populated when parsing a CRL. It must
    	// not be the zero time.
    	RevocationTime time.Time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. pkg/apis/certificates/validation/validation_test.go

    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	invalidCertificateEmptyPEM = []byte(`
    Leading non-PEM content
    -----BEGIN CERTIFICATE-----
    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	// first character is invalid
    	invalidCertificateNonASN1Data = []byte(`
    Leading non-PEM content
    -----BEGIN CERTIFICATE-----
    MIIBqDCCAU2gAwIBAgIUfbqeieihh/oERbfvRm38XvS/xHAwCgYIKoZIzj0EAwIw
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  10. plugin/pkg/admission/noderestriction/admission_test.go

    	tests := []admitTestCase{
    		// Mirror pods bound to us
    		{
    			name:       "allow creating a mirror pod bound to self",
    			podsGetter: noExistingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
Back to top