Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for assign_id (0.16 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
            "assigned tool"  | "over java extension"                | "other"  | null           | "current"         | "other"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaSimpleVariableAccess.kt

    public sealed class KaSimpleVariableAccess {
        public object Read : KaSimpleVariableAccess()
    
        public class Write(
            /**
             * [KtExpression] that represents the new value that should be assigned to this variable. Or null if the assignment is incomplete
             * and misses the new value.
             */
            public val value: KtExpression?,
        ) : KaSimpleVariableAccess()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 705 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

        return failure();
      }
    
      OpBuilder before_cluster_builder(cluster);
      IdentityOp assigned_id = before_cluster_builder.create<IdentityOp>(
          val_bcast.getLoc(), block_arg.getType(), block_arg);
      assigned_id->setAttr(kICIWeightDistributionMlirBridgeMarker,
                           before_cluster_builder.getBoolAttr(true));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. pkg/kubelet/userns/userns_manager.go

    		return nil, err
    	}
    
    	if kubeletMappingID%userNsLength != 0 {
    		return nil, fmt.Errorf("kubelet user assigned ID %v is not a multiple of %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingID < userNsLength {
    		// We don't allow to map 0, as security is circumvented.
    		return nil, fmt.Errorf("kubelet user assigned ID %v must be greater or equal to %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingLen%userNsLength != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanPropertyWriter.kt

                    fieldValue
                } else {
                    getConventionValue(bean, field, fieldValue)
                        ?.takeIf { conventionValue ->
                            // Prevent convention value to be assigned to a field of incompatible type
                            // A common cause is a regular field type being promoted to a Property/Provider type.
                            conventionValue.isAssignableTo(field.type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

    import org.gradle.internal.declarativedsl.evaluator.runner.EvaluationResult
    import org.gradle.internal.declarativedsl.language.SourceIdentifier
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentResolver.AssignmentResolutionResult.Assigned
    import org.gradle.internal.declarativedsl.parsing.DefaultLanguageTreeBuilder
    import org.gradle.internal.declarativedsl.parsing.ParserKt
    import org.gradle.test.fixtures.plugin.PluginBuilder
    import org.gradle.tooling.ModelBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    		{
    			name: "A pod which can be scheduled on a dedicated node assigned to user1 with effect NoSchedule",
    			pod:  podWithTolerations("pod1", []v1.Toleration{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    			node: nodeWithTaints("nodeA", []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    		},
    		{
    			name: "A pod which can't be scheduled on a dedicated node assigned to user2 with effect NoSchedule",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. pkg/config/security/security.go

    // URI must start with "http://" or "https://", which corresponding to "http" or "https" scheme.
    // Port number is extracted from URI if available (i.e from postfix :<port>, eg. ":80"), or assigned
    // to a default value based on URI scheme (80 for http and 443 for https).
    // Port name is set to URI scheme value.
    func ParseJwksURI(jwksURI string) (JwksInfo, error) {
    	u, err := url.Parse(jwksURI)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pkg/config/constants/constants.go

    	BinaryPathFilename = "/usr/local/bin/envoy"
    
    	// ServiceClusterName service cluster name used in xDS calls
    	ServiceClusterName = "istio-proxy"
    
    	// IstioIngressGatewayName is the internal gateway name assigned to ingress
    	IstioIngressGatewayName = "istio-autogenerated-k8s-ingress"
    
    	KubernetesGatewayName = "istio-autogenerated-k8s-gateway"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	persistentVolumeSize *resource.Quantity
    
    	// effectiveSELinuxMountFileLabel is the SELinux label that will be applied to the volume using mount options.
    	// If empty, then:
    	// - either the context+label is unknown (assigned randomly by the container runtime)
    	// - or the volume plugin responsible for this volume does not support mounting with -o context
    	// - or the volume is not ReadWriteOncePod
    	// - or the OS does not support SELinux
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top