Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 349 for uber (0.13 sec)

  1. cmd/peer-rest-server.go

    	}
    	userOrGroup := mss.Get(peerRESTUserOrGroup)
    	if userOrGroup == "" {
    		return np, grid.NewRemoteErr(errors.New("user-or-group is missing"))
    	}
    
    	userType, err := strconv.Atoi(mss.Get(peerRESTUserType))
    	if err != nil {
    		return np, grid.NewRemoteErr(fmt.Errorf("user-type `%s` is invalid: %w", mss.Get(peerRESTUserType), err))
    	}
    
    	isGroup := mss.Get(peerRESTIsGroup) == "true"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    			xremoveall(p)
    		}
    		xmkdirall(p)
    	}
    
    	// Create object directory.
    	// We used to use it for C objects.
    	// Now we use it for the build cache, to separate dist's cache
    	// from any other cache the user might have, and for the location
    	// to build the bootstrap versions of the standard library.
    	obj := pathf("%s/pkg/obj", goroot)
    	if !isdir(obj) {
    		xmkdir(obj)
    	}
    	xatexit(func() { xremove(obj) })
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // `INSTANTIATE_TEST_SUITE_P` is called once for every `TEST_P`. However, we
    // only want to analyze the user provided schemes and those that are registered
    // only once. Hence, this function keeping another static pointer to a vector
    // which contains only the schemes under test.
    //
    // Without this additional step, when there are schemes available but the user
    // only requests schemes that don't exist, first instantiation of the test would
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (!target_attr) target_attr = rewriter.getBoolAttr(false);
        narrow_range = target_attr;
      }
      {
        for (auto user : fakequant_op->getResult(0).getUsers()) {
          if (!absl::c_linear_search(target_ops, user)) {
            return rewriter.notifyMatchFailure(op, [&](Diagnostic &diag) {
              diag << "Skipping reordering between FakeQuant and "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    When a new property or method is added to an existing type in the Gradle DSL, it may clash with names already in use in user code.
    
    When a name clash occurs, one solution is to rename the element in user code.
    
    This is a non-exhaustive list of API additions in 8.1 that may cause name collisions with existing user code.
    
    * link:{javadocPath}/org/gradle/api/tasks/JavaExec.html#getJvmArguments--[`JavaExec.getJvmArguments()`]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    // input 'example.com/foo@v0.1.0' could syntactically refer to the variant of
    // the package loaded from either module! (See mod_get_ambiguous_pkg.txt.)
    // If the argument is ambiguous, the user can often disambiguate by specifying
    // explicit versions for *all* of the potential module paths involved.
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"os"
    	"path/filepath"
    	"runtime"
    	"sort"
    	"strconv"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    		`Stage:` + fmt.Sprintf("%v", this.Stage) + `,`,
    		`RequestURI:` + fmt.Sprintf("%v", this.RequestURI) + `,`,
    		`Verb:` + fmt.Sprintf("%v", this.Verb) + `,`,
    		`User:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.User), "UserInfo", "v1.UserInfo", 1), `&`, ``, 1) + `,`,
    		`ImpersonatedUser:` + strings.Replace(fmt.Sprintf("%v", this.ImpersonatedUser), "UserInfo", "v1.UserInfo", 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    	if err != nil {
    		return nil
    	}
    	if len(sets) > 1 {
    		// ControllerRef will ensure we don't do anything crazy, but more than one
    		// item in this list nevertheless constitutes user error.
    		utilruntime.HandleError(fmt.Errorf("user error! more than one daemon is selecting pods with labels: %+v", pod.Labels))
    	}
    	return sets
    }
    
    // getDaemonSetsForHistory returns a list of DaemonSets that potentially
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

          return;
        }
        for (auto& use : value.getUses()) {
          Operation* user = use.getOwner();
          if (user->hasTrait<mlir::OpTrait::IsTerminator>()) continue;
    
          auto affine_user = llvm::dyn_cast<mlir::AffineQuantizedOpInterface>(user);
          if (affine_user &&
              affine_user.GetAffineOperandIndex() == use.getOperandNumber() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    	if os.Getenv("IN_QEMU") == "1" {
    		t.Skip("ignore the failure in QEMU; see golang.org/issue/9605")
    	}
    	t.FailNow()
    	return nil
    }
    
    var diffCPUTimeImpl func(f func()) (user, system time.Duration)
    
    func diffCPUTime(t *testing.T, f func()) (user, system time.Duration) {
    	if fn := diffCPUTimeImpl; fn != nil {
    		return fn(f)
    	}
    	t.Fatalf("cannot measure CPU time on GOOS=%s GOARCH=%s", runtime.GOOS, runtime.GOARCH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top