Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for ALLOW (0.05 sec)

  1. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    			},
    			want: framework.NewStatus(framework.Unschedulable, "reject message").WithPlugin(permitPlugin),
    		},
    		{
    			name: "Allow Waiting Pod",
    			action: func(f framework.Framework) {
    				f.GetWaitingPod(pod.UID).Allow(permitPlugin)
    			},
    			want: nil,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

             (std::equal(i1, reduced_e1, i2));
    }
    
    // Check if the value of the last dimension of type1 is equal to the number of
    // elements in type2. This is a required condition to flatten type2 to form a
    // 1D array and allow the binaryOp handle the broadcasting implicitly.
    bool IsLastDimEqualToNumElements(Type type1, Type type2) {
      return (mlir::cast<ShapedType>(type1).getRank() >= 1 &&
              mlir::cast<ShapedType>(type1).getDimSize(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	})
    	caContent, err := dynamiccertificates.NewStaticCAContent("oidc-authenticator", caBundle)
    	if err != nil {
    		t.Fatalf("initialize ca: %v", err)
    	}
    	c.options.CAContentProvider = caContent
    
    	// Allow claims to refer to the serving URL of the test server.  For this,
    	// substitute all references to {{.URL}} in appropriate places.
    	// Use {{.Expired}} to handle the token expiry date string with correct timezone handling.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    // --------------------------------------------------------------------------
    TF_SessionOptions* TF_NewSessionOptions() {
      TF_SessionOptions* out = new TF_SessionOptions;
      // Disable optimizations for static graph to allow calls to Session::Extend.
      out->options.config.mutable_experimental()
          ->set_disable_optimize_for_static_graph(true);
      return out;
    }
    void TF_DeleteSessionOptions(TF_SessionOptions* opt) { delete opt; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // NotEqualOp
    //===----------------------------------------------------------------------===//
    
    LogicalResult NotEqualOp::verify() {
      NotEqualOp op = *this;
      // If we allow inputs to have incompatible type, then nothing to do.
      if (!op.getIncompatibleShapeError()) return success();
    
      // Otherwise, check inputs are broadcastable.
      return mlir::OpTrait::impl::verifyCompatibleOperandBroadcast(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    	for i := 0; i < numReq; i++ {
    		<-didReqCh
    	}
    
    	tr.CloseIdleConnections()
    	nfinal := waitNumGoroutine(n0 + 5)
    
    	growth := nfinal - n0
    
    	// We expect 0 or 1 extra goroutine, empirically. Allow up to 5.
    	// Previously we were leaking one per numReq.
    	if int(growth) > 5 {
    		t.Logf("goroutine growth: %d -> %d -> %d (delta: %d)", n0, nhigh, nfinal, growth)
    		t.Error("too many new goroutines")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		switch cfg.Goos {
    		case "windows":
    			a = append(a, "-mthreads")
    		default:
    			a = append(a, "-pthread")
    		}
    	}
    
    	if cfg.Goos == "aix" {
    		// mcmodel=large must always be enabled to allow large TOC.
    		a = append(a, "-mcmodel=large")
    	}
    
    	// disable ASCII art in clang errors, if possible
    	if b.gccSupportsFlag(compiler, "-fno-caret-diagnostics") {
    		a = append(a, "-fno-caret-diagnostics")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    bool ConstOp::isCompatibleReturnTypes(TypeRange l, TypeRange r) {
      // Allow the type inferred to not match exactly the inferred type as the
      // inferred type is from the element attribute's type while the op may have
      // gotten constructed from TF const op or be in a partial state of shape
      // refinement, so allow it to only be compatible. The op will be refined
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //		Whether the cgo command is supported. Either 0 or 1.
    //	CGO_CFLAGS
    //		Flags that cgo will pass to the compiler when compiling
    //		C code.
    //	CGO_CFLAGS_ALLOW
    //		A regular expression specifying additional flags to allow
    //		to appear in #cgo CFLAGS source code directives.
    //		Does not apply to the CGO_CFLAGS environment variable.
    //	CGO_CFLAGS_DISALLOW
    //		A regular expression specifying flags that must be disallowed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top