Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 242 for getg (0.03 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

             * repository never uses timestamps in the filename of a snapshot artifact. The discrepancy gets notable when a
             * remotely resolved snapshot artifact gets passed into pathOf(). So producing a proper local artifact path
             * using DefaultRepositoryLayout requires us to enforce usage of the artifact's base version. This
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	PatchesDir() string
    	// RealManifestPath gets the file path for the component in the "real" static pod manifest directory used by the kubelet
    	RealManifestPath(component string) string
    	// RealManifestDir should point to the static pod manifest directory used by the kubelet
    	RealManifestDir() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

      @SuppressWarnings("unchecked")
      protected B self() {
        return (B) this;
      }
    
      // Test Data
    
      private @Nullable G subjectGenerator;
      // Gets run before every test.
      private Runnable setUp;
      // Gets run at the conclusion of every test.
      private Runnable tearDown;
    
      @CanIgnoreReturnValue
      protected B usingGenerator(G subjectGenerator) {
        this.subjectGenerator = subjectGenerator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        /**
         * The types of output that the agent can use for execution data.
         */
        public enum Output {
            FILE,
            TCP_SERVER,
            TCP_CLIENT,
            NONE;
    
            /**
             * Gets type in format of agent argument.
             */
            public String getAsArg() {
                return toString().toLowerCase(Locale.US).replaceAll("_", "");
            }
        }
    
        private final JacocoAgentJar agent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

                                        execute.getOutputs().end());
    
      for (auto result :
           llvm::zip(island_op.getOutputs(), parallel_execute_outputs))
        std::get<0>(result).replaceAllUsesWith(std::get<1>(result));
    
      // Add sink island to pin all islands as a control dependency if there is a
      // control dependency leading from the parallel_execute originally.
      if (!island_op.getControl().use_empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/common.go

    		// API Server's version
    		realServerVersion, err := dryRunGetter.Client().Discovery().ServerVersion()
    		if err != nil {
    			return nil, errors.Wrap(err, "failed to get server version")
    		}
    
    		// Get the fake clientset
    		dryRunOpts := apiclient.GetDefaultDryRunClientOptions(dryRunGetter, os.Stdout)
    		// Print GET and LIST requests
    		dryRunOpts.PrintGETAndLIST = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    	if err != nil {
    		return fmt.Errorf("failed to initialize clientset for APF - %w", err)
    	}
    
    	err = func() error {
    		// get a derived context that gets cancelled after 5m or
    		// when the StopCh gets closed, whichever happens first.
    		ctx, cancel := contextFromChannelAndMaxWaitDuration(hookContext.StopCh, 5*time.Minute)
    		defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cache/secretcache_test.go

    	if err == nil {
    		t.Fatalf("expected to get error")
    	}
    
    	if gotSecret != nil {
    		t.Fatalf("Expected to get nil secret but got %v", gotSecret)
    	}
    
    	rootResource := "file-root:" + rootCertPath
    	gotSecretRoot, err := sc.GenerateSecret(rootResource)
    
    	if err == nil {
    		t.Fatalf("Expected to get error, but did not get")
    	}
    	if !strings.Contains(err.Error(), "no such file or directory") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

                                      op)))
            return failure();
    
          OpBuilder builder(op);
          auto const_op = builder.create<TF::ConstOp>(
              op->getLoc(), DenseIntElementsAttr::get(
                                RankedTensorType::get({}, builder.getI64Type()),
                                {device_ordinal}));
          op->replaceAllUsesWith(const_op);
          op->erase();
          return WalkResult::advance();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

        public ArtifactRepository getLocalRepository() {
            return request.getLocalRepository();
        }
    
        public List<String> getGoals() {
            return request.getGoals();
        }
    
        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top