Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for OUT (0.04 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.CachingMode != nil {
    		in, out := &in.CachingMode, &out.CachingMode
    		*out = new(AzureDataDiskCachingMode)
    		**out = **in
    	}
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	if in.ReadOnly != nil {
    		in, out := &in.ReadOnly, &out.ReadOnly
    		*out = new(bool)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.CachingMode != nil {
    		in, out := &in.CachingMode, &out.CachingMode
    		*out = new(AzureDataDiskCachingMode)
    		**out = **in
    	}
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	if in.ReadOnly != nil {
    		in, out := &in.ReadOnly, &out.ReadOnly
    		*out = new(bool)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			}
    		}
    		var out []byte
    		out, err = sh.runOut(p.Dir, nil, b.PkgconfigCmd(), "--cflags", pcflags, "--", pkgs)
    		if err != nil {
    			desc := b.PkgconfigCmd() + " --cflags " + strings.Join(pcflags, " ") + " -- " + strings.Join(pkgs, " ")
    			return nil, nil, sh.reportCmd(desc, "", out, err)
    		}
    		if len(out) > 0 {
    			cflags, err = splitPkgConfigOutput(bytes.TrimSpace(out))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    		syms = append(syms, dwarfp[i].syms...)
    	}
    	writeBlocks(ctxt, out, ctxt.outSem, ctxt.loader, syms, addr, size, zeros[:])
    }
    
    func pdatablk(ctxt *Link, out *OutBuf, addr int64, size int64) {
    	writeBlocks(ctxt, out, ctxt.outSem, ctxt.loader, sehp.pdata, addr, size, zeros[:])
    }
    
    func xdatablk(ctxt *Link, out *OutBuf, addr int64, size int64) {
    	writeBlocks(ctxt, out, ctxt.outSem, ctxt.loader, sehp.xdata, addr, size, zeros[:])
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            """
            if math_ops.reduce_sum(x) > 10.0:
              out = math_ops.matmul(x, self.filters_0)
              out = nn_ops.bias_add(out, self.bias_0)
              return {'output': out}
    
            out = math_ops.matmul(x, self.filters_1)
            out = nn_ops.bias_add(out, self.bias_1)
            return {'output': out}
    
        model = IfModel()
        saved_model_save.save(model, self._input_saved_model_path)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  6. src/reflect/value.go

    		}
    		in = append(in, v)
    	}
    
    	// Call underlying function.
    	out := f(in)
    	numOut := ftyp.NumOut()
    	if len(out) != numOut {
    		panic("reflect: wrong return count from function created by MakeFunc")
    	}
    
    	// Copy results back into argument frame and register space.
    	if numOut > 0 {
    		for i, typ := range ftyp.OutSlice() {
    			v := out[i]
    			if v.typ() == nil {
    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. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		in      *example.PodList
    		m       storage.SelectionPredicate
    		out     runtime.Object
    		context context.Context
    	}{
    		"notFound": {
    			in:  nil,
    			m:   matchEverything(),
    			out: &example.PodList{Items: []example.Pod{}},
    		},
    		"normal": {
    			in:  &example.PodList{Items: []example.Pod{*podA, *podB}},
    			m:   matchEverything(),
    			out: &example.PodList{Items: []example.Pod{*podA, *podB}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    		URIs:           []*url.URL{urlA, urlB},
    	}
    	out := marshalAndParseCSR(t, in)
    
    	if !reflect.DeepEqual(in.DNSNames, out.DNSNames) {
    		t.Fatalf("Unexpected DNSNames: got %v, want %v", out.DNSNames, in.DNSNames)
    	}
    	if !reflect.DeepEqual(in.EmailAddresses, out.EmailAddresses) {
    		t.Fatalf("Unexpected EmailAddresses: got %v, want %v", out.EmailAddresses, in.EmailAddresses)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    func TestCallConvert(t *testing.T) {
    	v := ValueOf(new(io.ReadWriter)).Elem()
    	f := ValueOf(func(r io.Reader) io.Reader { return r })
    	out := f.Call([]Value{v})
    	if len(out) != 1 || out[0].Type() != TypeOf(new(io.Reader)).Elem() || !out[0].IsNil() {
    		t.Errorf("expected [nil], got %v", out)
    	}
    }
    
    type emptyStruct struct{}
    
    type nonEmptyStruct struct {
    	member int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. pkg/config/validation/validation_test.go

    			_, err := v.Unwrap()
    			if err == nil && tt.out != "" {
    				t.Fatalf("validateServerPort(%v) = nil, wanted %q", tt.in, tt.out)
    			} else if err != nil && tt.out == "" {
    				t.Fatalf("validateServerPort(%v) = %v, wanted nil", tt.in, err)
    			} else if err != nil && !strings.Contains(err.Error(), tt.out) {
    				t.Fatalf("validateServerPort(%v) = %v, wanted %q", tt.in, err, tt.out)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top