Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 572 for addLine (0.11 sec)

  1. platforms/jvm/java-platform/src/main/java/org/gradle/api/plugins/JavaPlatformPlugin.java

        // Resolvable configurations
        public static final String CLASSPATH_CONFIGURATION_NAME = "classpath";
    
        private static final String DISALLOW_DEPENDENCIES = "Adding dependencies to platforms is not allowed by default.\n" +
            "Most likely you want to add constraints instead.\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/graph.go

    	if index == nil {
    		return
    	}
    	if destinationEdge, ok := e.(*destinationEdge); ok {
    		index.decrement(destinationEdge.DestinationID())
    	}
    }
    
    // A fastpath for recomputeDestinationIndex_locked for "adding edge case".
    func (g *Graph) addEdgeToDestinationIndex_locked(e graph.Edge) {
    	n := e.From()
    	index := g.destinationEdgeIndex[n.ID()]
    	if index == nil {
    		// There is no index, use the full index computation method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    		t.Fatalf("Error while deleting the old CTB: %v", err)
    	}
    	if _, err := kc.CertificatesV1alpha1().ClusterTrustBundles().Create(ctx, ctb2, metav1.CreateOptions{}); err != nil {
    		t.Fatalf("Error while adding new CTB: %v", err)
    	}
    
    	// We need to sleep long enough for the informer to notice the new
    	// ClusterTrustBundle, but much less than the 5 minutes of the cache TTL.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util.cc

      }
    
      // Compute the loop structure of the graph.
      std::vector<ControlFlowInfo> control_flow_info;
      TF_RETURN_IF_ERROR(BuildControlFlowInfo(graph, &control_flow_info));
    
      // The clustering code must avoid adding cycles to the graph to prevent
      // deadlock. However, the graph may contain loops, which would trigger the
      // cycle detection code. To handle loops, we alter the structure of the cycle
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. pkg/kubelet/util/manager/watch_based_manager_test.go

    		ns             string
    		name           string
    		referencedFrom types.UID
    		expectCount    int
    	}
    	tests := []struct {
    		desc    string
    		steps   []step
    		expects []expect
    	}{
    		{
    			desc: "adding and deleting should works",
    			steps: []step{
    				{"add", "ns1", "secret1", "pod1"},
    				{"add", "ns1", "secret1", "pod1"},
    				{"delete", "ns1", "secret1", "pod1"},
    				{"delete", "ns1", "secret1", "pod1"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. maven-core/plugin-manager.txt

    * how many of our REST services do not map directory to a method in the application interface?
    
    - an example of adding js
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	// invokes the function that sets additional flags
    	fn(e.cmdAdditionalFlags)
    }
    
    // BindToCommand bind the Runner to a cobra command by altering
    // command help, adding phase related flags and by adding phases subcommands
    // Please note that this command needs to be done once all the phases are added to the Runner.
    func (e *Runner) BindToCommand(cmd *cobra.Command) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. src/math/big/natdiv.go

    whether uₙuₙ₋₁uₙ₋₂ < q̂·vₙ₋₁vₙ₋₂ is the same as checking r̂·B + uₙ₋₂ < q̂·vₙ₋₂.
    
    If we find that r̂·B + uₙ₋₂ < q̂·vₙ₋₂, then we can adjust the guess by
    decrementing q̂ and adding vₙ₋₁ to r̂. We repeat until r̂·B + uₙ₋₂ ≥ q̂·vₙ₋₂.
    (As before, this fixup is only needed at most twice.)
    
    Now that q̂ = ⌊uₙuₙ₋₁uₙ₋₂ / vₙ₋₁vₙ₋₂⌋, as mentioned above it is at most one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

     * integration tests in this package, but only what is very specific to the Kotlin DSL.
     * Because it requires the generated Gradle API it runs significantly slower than the other
     * tests so avoid adding tests here if they cannot be expressed with the Groovy DSL.
     *
     * These tests use Groovy settings files because the parent class sets up things in it already.
     */
    @LeaksFileHandles("Kotlin Compiler Daemon working directory")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                            // Eventually, this should become the default and only behaviour for all worker threads and changes to locks made only when starting or
                            // finishing an execution node. Adding this constraint here means that we can make all build operation queue workers compliant with this
                            // constraint and then gradually roll this out to other worker threads, such as task action workers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top