Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for emptypb (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            "namespace": {
              "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. cmd/xl-storage_test.go

    	if isDirEmpty(dir2, true) {
    		t.Error("expected false for a file, got true")
    	}
    
    	// Should give true for a real empty directory.
    	dir3 := slashpath.Join(tmp, "empty")
    	err = os.Mkdir(dir3, 0o777)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if !isDirEmpty(dir3, true) {
    		t.Error("expected true for empty dir, got false")
    	}
    }
    
    func TestXLStorageReadVersionLegacy(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

         */
        public interface Statement {
            enum Type {Empty, Single, Group}
    
            @Nullable
            String getComment();
    
            /**
             * Returns details of the size of this statement. Returns {@link Type#Empty} when this statement is empty and should not be included in the script.
             */
            Type type();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. pkg/apis/networking/validation/validation_test.go

    		"invalid ipv6 cidr format": makeNetworkPolicyCustom(setIngressFromIPBlockIPV6, func(networkPolicy *networking.NetworkPolicy) {
    			networkPolicy.Spec.Ingress[0].From[0].IPBlock.CIDR = "fd00:192:168::"
    		}),
    		"except field is an empty string": makeNetworkPolicyCustom(setIngressFromIPBlockIPV4, func(networkPolicy *networking.NetworkPolicy) {
    			networkPolicy.Spec.Ingress[0].From[0].IPBlock.Except = []string{""}
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    	}
    
    	return &resp, nil
    }
    
    // deleteFile deletes a file or a directory if its empty unless recursive
    // is set to true. If the target is successfully deleted, it will recursively
    // move up the tree, deleting empty parent directories until it finds one
    // with files in it. Returns nil for a non-empty directory even when
    // recursive is set to false.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  6. configure.py

                question=None,
                yes_reply=None,
                no_reply=None):
      """Get boolean input from user.
    
      If var_name is not set in env, ask user to enable query_item or not. If the
      response is empty, use the default.
    
      Args:
        environ_cp: copy of the os.environ.
        var_name: string for name of environment variable, e.g. "TF_NEED_CUDA".
        query_item: string for feature related to the variable, e.g. "CUDA for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  7. pilot/pkg/model/telemetry_logging_test.go

    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy-json"},
    		},
    		{
    			"empty config inherits",
    			[]config.Config{newTelemetry("istio-system", envoy), newTelemetry("default", empty)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"stackdriver",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    	// CRL. When creating a CRL, it may be empty or nil, in which case the
    	// revokedCertificates ASN.1 sequence will be omitted from the CRL entirely.
    	RevokedCertificateEntries []RevocationListEntry
    
    	// RevokedCertificates is used to populate the revokedCertificates
    	// sequence in the CRL if RevokedCertificateEntries is empty. It may be empty
    	// or nil, in which case an empty CRL will be created.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @return The set of projects.  Returns an empty set if this project has no subprojects.
         */
        Set<Project> getSubprojects();
    
        /**
         * <p>Creates a {@link Task} with the given name and adds it to this project. Calling this method is equivalent to
         * calling {@link #task(java.util.Map, String)} with an empty options map.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. src/go/build/build.go

    	GOOS   string // target operating system
    	GOROOT string // Go root
    	GOPATH string // Go paths
    
    	// Dir is the caller's working directory, or the empty string to use
    	// the current directory of the running process. In module mode, this is used
    	// to locate the main module.
    	//
    	// If Dir is non-empty, directories passed to Import and ImportDir must
    	// be absolute.
    	Dir string
    
    	CgoEnabled  bool   // whether cgo files are included
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top