Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for distinguish (0.21 sec)

  1. src/net/http/server.go

    			u := &url.URL{Path: path, RawQuery: r.URL.RawQuery}
    			return RedirectHandler(u.String(), StatusMovedPermanently), patStr, nil, nil
    		}
    	}
    	if n == nil {
    		// We didn't find a match with the request method. To distinguish between
    		// Not Found and Method Not Allowed, see if there is another pattern that
    		// matches except for the method.
    		allowedMethods := mux.matchingMethods(host, path)
    		if len(allowedMethods) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

                assert result == [expected] as Set
            } catch (VariantSelectionException e) {
                if (expected == null) {
                    def distinguisher = queryAttributes.containsKey('flavor') ? 'extra' : 'flavor'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      # First, ensure the template doesn't exist.
      # TODO(zmerlynn): To make this really robust, we need to parse the output and
      #                 add retries. Just relying on a non-zero exit code doesn't
      #                 distinguish an ephemeral failed call from a "not-exists".
      if gcloud compute instance-templates describe "${template_name}" --project "${PROJECT}" &>/dev/null; then
        echo "Instance template ${1} already exists; deleting." >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
                "format": "int32",
                "type": "integer"
              },
              "revisionHistoryLimit": {
                "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // they must appear near the top of the file, preceded
    // only by blank lines and other comments. These rules mean that in Go
    // files a build constraint must appear before the package clause.
    //
    // To distinguish build constraints from package documentation,
    // a build constraint should be followed by a blank line.
    //
    // A build constraint comment is evaluated as an expression containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. security/pkg/util/jwtutil.go

    	// It is empty for the default K8S tokens.
    	Aud []string `json:"aud"`
    }
    
    // ExtractJwtAud extracts the audiences from a JWT token. If aud cannot be parse, the bool will be set
    // to false. This distinguishes aud=[] from not parsed.
    func ExtractJwtAud(jwt string) ([]string, bool) {
    	jwtSplit := strings.Split(jwt, ".")
    	if len(jwtSplit) != 3 {
    		return nil, false
    	}
    	payload := jwtSplit[1]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. docs/sts/ldap.md

    - User provides their AD/LDAP username and password to the STS API.
    - MinIO looks up the user's information (specifically the user's Distinguished Name) in the LDAP server.
    - On finding the user's info, MinIO verifies the login credentials with the AD/LDAP server.
    - MinIO optionally queries the AD/LDAP server for a list of groups that the user is a member of.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    `is_stateless` means each op does not need control dependencies to other
    collective ops. In this case, keys that are unique at runtime
    (e.g. `instance_key`) should be used to distinguish collective groups.
      }];
    
      let arguments = (ins
        TF_FpOrI32OrI64Tensor:$input,
        TF_Int32Tensor:$group_size,
        TF_Int32Tensor:$group_key,
        TF_Int32Tensor:$instance_key,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    			if num == 0 {
    				// According to the arm64 specification, for instructions MOVB, MOVBU and FMOVB,
    				// the extension amount must be 0, encoded in "S" as 0 if omitted, or as 1 if present.
    				// But in Go, we don't distinguish between Rn.UXTW and Rn.UXTW<<0, so we encode it as
    				// that does not present. This makes no difference to the function of the instruction.
    				// This is also true for extensions LSL, SXTW and SXTX.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                "ReplicationControllerSpec is the specification of a replication controller.",
    	"replicas":        "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top