Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for restriction (0.6 sec)

  1. pkg/proxy/ipvs/proxier.go

    	// The later case is also and invalid configuration, but the traffic impact will be minor.
    	// This should not be a problem if users honors reserved addresses, but cut/paste
    	// from documentation is not unheard of, so the restriction to not use the TEST-NET-2 range
    	// must be documented.
    	vs := utilipvs.VirtualServer{
    		Address:   netutils.ParseIPSloppy("198.51.100.0"),
    		Protocol:  "TCP",
    		Port:      20000,
    		Scheduler: scheduler,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    		return lit
    	}
    	s, err := strconv.Unquote(lit.Value)
    	if err != nil {
    		return lit
    	}
    
    	// if the string is an invalid path, return whatever we have
    	//
    	// spec: "Implementation restriction: A compiler may restrict
    	// ImportPaths to non-empty strings using only characters belonging
    	// to Unicode's L, M, N, P, and S general categories (the Graphic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    // shorter grace period to be provided, returning the desired value.
    func calculateEffectiveGracePeriod(status *podSyncStatus, pod *v1.Pod, options *KillPodOptions) (int64, bool) {
    	// enforce the restriction that a grace period can only decrease and track whatever our value is,
    	// then ensure a calculated value is passed down to lower levels
    	gracePeriod := status.gracePeriod
    	overridden := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	typ := t.common()
    
    	// Look in cache.
    	ckey := cacheKey{Chan, typ, nil, uintptr(dir)}
    	if ch, ok := lookupCache.Load(ckey); ok {
    		return ch.(*rtype)
    	}
    
    	// This restriction is imposed by the gc compiler and the runtime.
    	if typ.Size_ >= 1<<16 {
    		panic("reflect.ChanOf: element size too large")
    	}
    
    	// Look in known types.
    	var s string
    	switch dir {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    // interior loader.Sym's that point into a portion of the container.
    func (l *Loader) AddInteriorSym(container Sym, interior Sym) {
    	// Container symbols are expected to have content/data.
    	// NB: this restriction may turn out to be too strict (it's possible
    	// to imagine a zero-sized container with an interior symbol pointing
    	// into it); it's ok to relax or remove it if we counter an
    	// oddball host object that triggers this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        /**
         * Configure a single client scoped listener that will receive all analytic events for this
         * client.
         *
         * @see EventListener for semantics and restrictions on listener implementations.
         */
        fun eventListener(eventListener: EventListener) =
          apply {
            this.eventListenerFactory = eventListener.asFactory()
          }
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

      }
    
      TF_Operation* UseT(const std::vector<TF_Output>& inputs) {
        TF_Operation* op;
        UseHelper(inputs, &op);
        return op;
      }
    
      // All the *Helper methods are used as a workaround for the restrictions that
      // one cannot call ASSERT_* methods in non-void-returning functions (when
      // exceptions are disabled during compilation)
      void UseHelper(const std::vector<TF_Output>& inputs, TF_Operation** op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  10. cmd/bucket-handlers.go

    			errAPI.Description = fmt.Sprintf("%s '(%s)'", errAPI.Description, err)
    			writeErrorResponse(ctx, w, errAPI, r.URL)
    			return
    		}
    
    		// Make sure formValues adhere to policy restrictions.
    		if err = checkPostPolicy(formValues, postPolicyForm); err != nil {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErrWithErr(ErrAccessDenied, err), r.URL)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top