Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for bundles (0.14 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "trustBundle": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      //       the indices arugment,
      //     - first tranpose op takes perm [2, 1, 0, 3], and
      //     - second transpose op take perm [1, 2, 0, 3].
      //
      // Note the current pattern matching logic only handles when width == height.
      LogicalResult matchAndRewrite(TFL::GatherNdOp gather_nd_first,
                                    PatternRewriter &rewriter) const override {
        auto result_value = gather_nd_first.getResult();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated private key"))
    		}
    		if tls.CaCertificates != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated CA bundle"))
    		}
    		if tls.CredentialName != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated credentialName"))
    		}
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	if cw.chunking {
    		bw := cw.res.conn.bufw // conn's bufio writer
    		// zero chunk to mark EOF
    		bw.WriteString("0\r\n")
    		if trailers := cw.res.finalTrailers(); trailers != nil {
    			trailers.Write(bw) // the writer handles noting errors
    		}
    		// final blank line after the trailers (whether
    		// present or not)
    		bw.WriteString("\r\n")
    	}
    }
    
    // A response represents the server side of an HTTP response.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	return admission.NewForbidden(a, errors.New("Mutating admission control is denying all modifications"))
    }
    
    func (alwaysMutatingDeny) Handles(operation admission.Operation) bool {
    	return true
    }
    
    var _ admission.MutationInterface = &alwaysMutatingDeny{}
    
    type alwaysValidatingDeny struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    		// transition and handles it specially based on the
    		// wait reason.
    		casGToWaitingForGC(gp, _Grunning, waitReasonStoppingTheWorld)
    		stopTheWorldContext = stopTheWorldWithSema(reason) // avoid write to stack
    		casgstatus(gp, _Gwaiting, _Grunning)
    	})
    	return stopTheWorldContext
    }
    
    // startTheWorld undoes the effects of stopTheWorld.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      // expected-remark@above {{ID: 12}}
      // expected-remark@above {{Sinks: {11}}}
    }
    
    // -----
    
    // Tests that the pass tracks control dependencies for reads/writes on the two
    // resource handles that refer to the same variable.
    
    // CHECK-LABEL: func @aliasing_reads_writes
    func.func @aliasing_reads_writes(%arg0: tensor<32xf32>) -> () {
    // expected-remark@above {{ID: 14}}
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func waitForMultipleObjects(count uint32, handles uintptr, waitAll bool, waitMilliseconds uint32) (event uint32, err error) {
    	var _p0 uint32
    	if waitAll {
    		_p0 = 1
    	}
    	r0, _, e1 := syscall.Syscall6(procWaitForMultipleObjects.Addr(), 4, uintptr(count), uintptr(handles), uintptr(_p0), uintptr(waitMilliseconds), 0, 0)
    	event = uint32(r0)
    	if event == 0xffffffff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    		}
    	}()
    
    	defer func() {
    		done <- true
    	}()
    
    	type T *uintptr
    	tt := TypeOf(T(nil))
    	ct := ChanOf(BothDir, tt)
    
    	// NOTE: The garbage collector handles allocated channels specially,
    	// so we have to save pointers to channels in x; the pointer code will
    	// use the gc info in the newly constructed chan type.
    	const n = 100
    	var x []any
    	for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top