Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 913 for Usages (0.33 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

    ): List<LighterASTNode> {
        val ref = Ref<Array<LighterASTNode?>>()
        getChildren(node, ref)
        return ref.get()
            .filterNotNull()
            .filter { it.isUseful }
    } // TODO: any usages that need to be checked for parsing errors?
    
    
    internal
    fun FlyweightCapableTreeStructure<LighterASTNode>.getFirstChildExpressionUnwrapped(node: LighterASTNode): LighterASTNode? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ApplyPluginIntegSpec.groovy

                        }
                    }
                }
            """
        }
    
        /**
         * Configures tests to include open access to java.base/java.lang modules
         * ProjectBuilder usages will fail without this
         */
        static String addOpens() {
            """
            // Needed when using ProjectBuilder
            class AddOpensArgProvider implements CommandLineArgumentProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            when:
            provider.get()
    
            then:
            def e2 = thrown(RuntimeException)
            e2.is(e)
            BrokenServiceImpl.attempts == 1
        }
    
        def "service has no max parallel usages by default"() {
            expect:
            registerService("service", ServiceImpl) {
                assert !it.maxParallelUsages.present
            }
            def registration = registry.registrations.getByName("service")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/eventbus/EventBus.java

     * href="https://lorentzos.com/rxjava-as-event-bus-the-right-way-10a36bdd49ba">2</a>.) Some usages
     * of EventBus may be better written using <a
     * href="https://kotlinlang.org/docs/coroutines-guide.html">Kotlin coroutines</a>, including <a
     * href="https://kotlinlang.org/docs/flow.html">Flow</a> and <a
     * href="https://kotlinlang.org/docs/channels.html">Channels</a>. Yet other usages are better served
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

                    is StageFailure.AssignmentErrors -> {
                        appendLine("Failures in assignments:".indent(1))
                        stageFailure.usages.forEach { unassigned ->
                            appendLine(describedUnassignedValueUsage(unassigned).indent(2))
                        }
                    }
    
                    is StageFailure.DocumentCheckFailures -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/fold_constants_to_subgraph.cc

              if (consumer_call.getOperand(i) == op->getResult(0)) {
                argument_index = i;
                break;
              }
            }
    
            // Copy the const into the consumer func and replace their usages.
            func::FuncOp func = module.lookupSymbol<func::FuncOp>(function_name);
    
            CopyConstantIntoFunc(argument_index, op, func);
          }
        });
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    // If the slice is empty, it's defaulted with one token. Otherwise it just loops
    // through the slice and sets the defaults for the omitempty fields that are TTL,
    // Usages and Groups. Token is NOT defaulted with a random one in the API defaulting
    // layer, but set to a random value later at runtime if not set before.
    func SetDefaults_BootstrapTokens(obj *InitConfiguration) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

        }
      }
    
      // Create the new launch op after TPUCompileOp with the preprocessing ops.
      tf_device::LaunchOp moved_launch_op =
          CreateLaunchForBlock(builder, before_op, launch_block, device);
    
      // Replace usages of the original launch op with the new launch op for
      // operations that were moved.
      for (OpOperand& operand :
           moved_launch_op.GetBody().getTerminator()->getOpOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            variant1.artifacts >> [artifact1]
            def publishableVariant1 = Stub(PublishableVariant)
            publishableVariant1.name >> "debug"
            publishableVariant1.usages >> [variant1]
            publishableVariant1.getCoordinates() >> new DefaultModuleVersionIdentifier("my.group", "test_app_debug", "1.2")
    
            def artifact2 = Stub(PublishArtifact)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.ClusterConfiguration = kubeadm.ClusterConfiguration{}
    
    	// Adds the default bootstrap token to get the round trip working
    	obj.BootstrapTokens = []bootstraptokenv1.BootstrapToken{
    		{
    			Groups: []string{"foo"},
    			Usages: []string{"foo"},
    			TTL:    &metav1.Duration{Duration: 1234},
    		},
    	}
    	obj.SkipPhases = nil
    	obj.NodeRegistration.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.NodeRegistration.ImagePullSerial = ptr.To(true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top