Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for yield (0.09 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    			}
    		case k8s.QueryParamMatchRegularExpression:
    			res[string(qp.Name)] = &istio.StringMatch{
    				MatchType: &istio.StringMatch_Regex{Regex: qp.Value},
    			}
    		default:
    			// Should never happen, unless a new field is added
    			return nil, &ConfigError{Reason: InvalidConfiguration, Message: fmt.Sprintf("unknown type: %q is not supported QueryParams type", tp)}
    		}
    	}
    
    	if len(res) == 0 {
    		return nil, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. src/time/format.go

    //
    // The example for [Time.Format] demonstrates the working of the layout string
    // in detail and is a good reference.
    //
    // When parsing (only), the input may contain a fractional second
    // field immediately after the seconds field, even if the layout does not
    // signify its presence. In that case either a comma or a decimal point
    // followed by a maximal series of digits is parsed as a fractional second.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	for k, vv := range hdrs {
    		if !httpguts.ValidHeaderFieldName(k) {
    			return fmt.Sprintf("field name %q", k)
    		}
    		for _, v := range vv {
    			if !httpguts.ValidHeaderFieldValue(v) {
    				// Don't include the value in the error,
    				// because it may be sensitive.
    				return fmt.Sprintf("field value for %q", k)
    			}
    		}
    	}
    	return ""
    }
    
    // roundTrip implements a RoundTripper over HTTP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    	},
    	ErrMissingSignTag: {
    		Code:           "AccessDenied",
    		Description:    "Signature header missing Signature field.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingSignHeadersTag: {
    		Code:           "InvalidArgument",
    		Description:    "Signature header missing SignedHeaders field.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedExpires: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. cmd/iam.go

    // policy for the STS credential. The policy mapping can be updated by the
    // administrator.
    //
    // - from `Subject.CommonName` field from the STS request for
    // AssumeRoleWithCertificate. In this case, the policy for the STS credential
    // has the same name as the value of this field.
    //
    // - from special JWT claim from STS request for AssumeRoleWithOIDC API (when
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	// Hostname represents the FQDN of the service.
    	// For Kubernetes, this would be <name>.<namespace>.svc.<cluster domain>.
    	// TODO: support this field
    	Hostname string `protobuf:"bytes,3,opt,name=hostname,proto3" json:"hostname,omitempty"`
    	// Address represents the addresses the service can be reached at.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	// because it is possible a synchronization task is queued for a job, without
    	// the managedBy field, but the job is quickly replaced by another job with
    	// the field. Then, the syncJob might be invoked for a job with the field.
    	if controllerName := managedByExternalController(sharedJob); controllerName != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    type SECURITY_QUALITY_OF_SERVICE struct {
    	Length              uint32
    	ImpersonationLevel  uint32
    	ContextTrackingMode byte
    	EffectiveOnly       byte
    }
    
    // Constants for the ContextTrackingMode field of SECURITY_QUALITY_OF_SERVICE.
    const (
    	SECURITY_STATIC_TRACKING  = 0
    	SECURITY_DYNAMIC_TRACKING = 1
    )
    
    type SecurityAttributes struct {
    	Length             uint32
    	SecurityDescriptor *SECURITY_DESCRIPTOR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        Severity.ERROR,
                        Version.BASE,
                        prefix + "systemPath",
                        d.getManagementKey(),
                        "must be omitted. This field may only be specified for a dependency with system scope.",
                        d);
            }
    
            if (request.getValidationLevel() >= ModelBuilderRequest.VALIDATION_LEVEL_MAVEN_2_0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	fooPredicate := storage.SelectionPredicate{
    		Label: labels.SelectorFromSet(map[string]string{"foo": "true"}),
    		Field: fields.Everything(),
    	}
    	barPredicate := storage.SelectionPredicate{
    		Label: labels.SelectorFromSet(map[string]string{"bar": "true"}),
    		Field: fields.Everything(),
    	}
    
    	createWatch := func(pred storage.SelectionPredicate) watch.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top