Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 195 for rejections (0.13 sec)

  1. src/cmd/compile/internal/types2/check.go

    func (check *Checker) recordSelection(x *syntax.SelectorExpr, kind SelectionKind, recv Type, obj Object, index []int, indirect bool) {
    	assert(obj != nil && (recv == nil || len(index) > 0))
    	check.recordUse(x.Sel, obj)
    	if m := check.Selections; m != nil {
    		m[x] = &Selection{kind, recv, obj, index, indirect}
    	}
    }
    
    func (check *Checker) recordScope(node syntax.Node, scope *Scope) {
    	assert(node != nil)
    	assert(scope != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InternetDomainName.java

     * but given that any public suffix may become a host without warning, it is better to err on the
     * side of permissiveness and thus avoid spurious rejection of valid sites. Of course, to actually
     * determine addressability of any host, clients of this class will need to perform their own DNS
     * lookups.
     *
     * <p>During construction, names are normalized in two ways:
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

        return (ImmutableSet<E>) RegularImmutableSet.EMPTY;
      }
    
      /**
       * Returns an immutable set containing the given element. Preferred over {@link
       * Collections#singleton} for code consistency, {@code null} rejection, and because the return
       * type conveys the immutability guarantee.
       */
      public static <E> ImmutableSet<E> of(E e1) {
        return new SingletonImmutableSet<>(e1);
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. src/crypto/internal/mlkem768/mlkem768.go

    	B.Write(rho)
    	B.Write([]byte{ii, jj})
    
    	// SampleNTT essentially draws 12 bits at a time from r, interprets them in
    	// little-endian, and rejects values higher than q, until it drew 256
    	// values. (The rejection rate is approximately 19%.)
    	//
    	// To do this from a bytes stream, it draws three bytes at a time, and
    	// splits them into two uint16 appropriately masked.
    	//
    	//               r₀              r₁              r₂
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  5. cmd/sts-handlers.go

    	}
    	if len(ldapPolicies) == 0 && newGlobalAuthZPluginFn() == nil {
    		writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue,
    			fmt.Errorf("expecting a policy to be set for user `%s` or one of their groups: `%s` - rejecting this request",
    				ldapActualUserDN, strings.Join(groupDistNames, "`,`")))
    		return
    	}
    
    	expiryDur, err := globalIAMSys.LDAPConfig.GetExpiryDuration(r.Form.Get(stsDurationSeconds))
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    			expectedLog: "Skipping injection because Deployment \"sample/hello-host-network\" has host networking enabled",
    		},
    		{
    			// Verifies ISTIO_KUBE_APP_PROBERS are correctly merged during multiple injections.
    			in:   "merge-probers.yaml",
    			want: "merge-probers.yaml.injected",
    			setFlags: []string{
    				`values.global.proxy.holdApplicationUntilProxyStarts=true`,
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    // used to be called 'assume' in the original scheduler. These plugins should
    // return only Success or Error in Status.code. However, the scheduler accepts
    // other valid codes as well. Anything other than Success will lead to
    // rejection of the pod.
    type ReservePlugin interface {
    	Plugin
    	// Reserve is called by the scheduling framework when the scheduler cache is
    	// updated. If this method returns a failed Status, the scheduler will call
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. pkg/adsc/adsc.go

    	for {
    		select {
    		case <-a.Updates:
    		default:
    			return
    		}
    	}
    }
    
    // WaitSingle waits for a single resource, and fails if the rejected type is
    // returned. We avoid rejecting all other types to avoid race conditions. For
    // example, a test asserting an incremental update of EDS may fail if a previous
    // push's RDS response comes in later. Instead, we can reject events coming
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    	//
    	// Even if a user explicitly created a Sidecar config with an ingress listener for a privileged port,
    	// it is still not worth it creating such a listener if we already known that a proxy will end up
    	// rejecting it.
    	testPrivilegedPorts(t, func(t *testing.T, proxy *model.Proxy, port uint32) []*listener.Listener {
    		// simulate user-defined Sidecar config with an ingress listener for a given port
    		sidecarConfig := config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    	plaintextHTTPALPNs = func() []string {
    		if features.HTTP10 {
    			// If HTTP 1.0 is enabled, we will match it
    			return []string{"http/1.0", "http/1.1", "h2c"}
    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    		// NOTE: mtlsHTTPALPNs can always include 1.0, for simplicity, as it will only be sent if a client
    		return []string{"http/1.1", "h2c"}
    	}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top