Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 94 for ONCE (0.21 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                 << "got rank = " << input_type.getRank()
                 << ", and axis = " << op.getAxis();
      }
    
      // Make sure all inputs have the same shape and element type.
      // TODO(b/135032063): Simplify once fixed.
      for (Type operand_type : op.getOperandTypes()) {
        if (failed(mlir::verifyCompatibleShape(input_type, operand_type)))
          return op.emitOpError("operands should be of the same type. got ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	state := 0
    
    	// waiter will be called for all queries, including
    	// initial setup queries. The state is only assigned when
    	// no queries are made.
    	//
    	// Only allow the first batch of queries to finish once the
    	// second batch of Ping queries have finished.
    	waiter := func(ctx context.Context) {
    		switch state {
    		case 0:
    			// Nothing. Initial database setup.
    		case 1:
    			saturate.Done()
    			select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    				t.Fatalf("got valid=%v but wanted valid=%v: %v", err == nil, tc.valid, err)
    			}
    		})
    	}
    }
    
    // TODO: add TCP test cases once it is implemented
    func TestValidateVirtualService(t *testing.T) {
    	testCases := []struct {
    		name    string
    		in      proto.Message
    		valid   bool
    		warning bool
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    						}
    					}
    					if !found {
    						t.Errorf("expect cost limit exceed err but did not find")
    					}
    					if len(errs) > 1 {
    						t.Errorf("expect to only return cost budget exceed err once but got: %v", len(errs))
    					}
    
    					// test with PerCallLimit exceeded
    					found = false
    					celValidator = NewValidator(&s, true, 0)
    					if celValidator == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	return e.Err
    }
    
    // ResolveEmbed resolves //go:embed patterns and returns only the file list.
    // For use by go mod vendor to find embedded files it should copy into the
    // vendor directory.
    // TODO(#42504): Once go mod vendor uses load.PackagesAndErrors, just
    // call (*Package).ResolveEmbed
    func ResolveEmbed(dir string, patterns []string) ([]string, error) {
    	files, _, err := resolveEmbed(dir, patterns)
    	return files, err
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // v.flag.mustBe(Bool), which will only bother to copy the
    // single important word for the receiver.
    func (f flag) mustBe(expected Kind) {
    	// TODO(mvdan): use f.kind() again once mid-stack inlining gets better
    	if Kind(f&flagKindMask) != expected {
    		panic(&ValueError{valueMethodName(), f.kind()})
    	}
    }
    
    // mustBeExported panics if f records that the value was obtained using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  8. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    // Code generated by 'go generate'; DO NOT EDIT.
    
    package windows
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ unsafe.Pointer
    
    // Do the interface allocations only once for common
    // Errno values.
    const (
    	errnoERROR_IO_PENDING = 997
    )
    
    var (
    	errERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING)
    	errERROR_EINVAL     error = syscall.EINVAL
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    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. pkg/kubelet/kubelet_pods_test.go

    				if !ok || s.IsTerminationRequested() || s.IsTerminationStarted() || s.IsFinished() || s.IsWorking() || s.IsDeleted() {
    					t.Fatalf("unexpected requested pod termination: %#v", s)
    				}
    
    				// pod was synced once
    				if actual, expected := records[uid], []syncPodRecord{
    					{name: "pod1", updateType: kubetypes.SyncPodCreate},
    				}; !reflect.DeepEqual(expected, actual) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top