Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for convlit (0.17 sec)

  1. src/cmd/link/internal/loader/loader.go

    		ms.data = append(ms.data, make([]byte, int(siz)+1-cl)...)
    		ms.data = ms.data[0:cl]
    	}
    	ms.data = ms.data[:siz]
    }
    
    // Convert a local index to a global index.
    func (l *Loader) toGlobal(r *oReader, i uint32) Sym {
    	return r.syms[i]
    }
    
    // Convert a global index to a local index.
    func (l *Loader) toLocal(i Sym) (*oReader, uint32) {
    	return l.objs[l.objSyms[i].objidx], l.objSyms[i].s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    					Image: "busybox",
    				},
    			},
    		},
    	}
    
    	// Set fake sandbox and fake containers to fakeRuntime.
    	fakeSandbox, fakeContainers := makeAndSetFakePod(t, m, fakeRuntime, pod)
    
    	// Convert the fakeContainers to kubecontainer.Container
    	containers := make([]*kubecontainer.Container, len(fakeContainers))
    	for i := range containers {
    		fakeContainer := fakeContainers[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                                      output.getType(), shard_type)))
          return mlir::failure();
        shard_output_types.push_back(shard_type);
        full_output_types.push_back(output.getType());
      }
    
      // Convert split sharded inputs to MANUAL sharded inputs.
      // common_split_sharding is the split sharding that is common to all inputs
      // and outputs.
      llvm::SmallVector<Value, 4> manual_inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    		cref.Name.C = cname(cref.Name.Go)
    	}
    
    	var conv typeConv
    	conv.Init(p.PtrSize, p.IntSize)
    
    	p.loadDefines(f)
    	p.typedefs = map[string]bool{}
    	p.typedefList = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	// ":authority" pseudo-header field.
    	// It may be of the form "host:port". For international domain
    	// names, Host may be in Punycode or Unicode form. Use
    	// golang.org/x/net/idna to convert it to either format if
    	// needed.
    	// To prevent DNS rebinding attacks, server Handlers should
    	// validate that the Host header has a value for which the
    	// Handler considers itself authoritative. The included
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			t.Fatalf("Failed to add storage class to internal cache: %v", err)
    		}
    	}
    
    	// Get internal types
    	internalBinder, ok := binder.(*volumeBinder)
    	if !ok {
    		t.Fatalf("Failed to convert to internal binder")
    	}
    
    	return &testEnv{
    		client:                  client,
    		reactor:                 reactor,
    		binder:                  binder,
    		internalBinder:          internalBinder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    	},
    	ErrCastFailed: {
    		Code:           "CastFailed",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCast: {
    		Code:           "InvalidCast",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. tensorflow/BUILD

            "//learning/pathways/...",
            "//learning/serving/contrib/tfrt/mlir/canonical_ops/...",
            "//learning/serving/experimental/remote_predict/...",
            "//perftools/accelerators/xprof/convert/...",
            "//perftools/accelerators/xprof/integration_tests/...",
            "//smartass/brain/configure/...",
            "//tensorflow/...",
            "//tensorflow_decision_forests/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. src/time/time.go

    	// but otherwise can be changed at will.
    	absoluteZeroYear = -292277022399
    
    	// The year of the zero Time.
    	// Assumed by the unixToInternal computation below.
    	internalYear = 1
    
    	// Offsets to convert between internal and absolute or Unix times.
    	absoluteToInternal int64 = (absoluteZeroYear - internalYear) * 365.2425 * secondsPerDay
    	internalToAbsolute       = -absoluteToInternal
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	//     RoundTripper returns.
    	ctx, cancel := context.WithCancelCause(req.Context())
    
    	// Convert Request.Cancel into context cancelation.
    	if origReq.Cancel != nil {
    		go awaitLegacyCancel(ctx, cancel, origReq)
    	}
    
    	// Convert Transport.CancelRequest into context cancelation.
    	//
    	// This is lamentably expensive. CancelRequest has been deprecated for a long time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top