Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 647 for assign_id (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalFileDependencyMetadata.java

     */
    public interface LocalFileDependencyMetadata {
        /**
         * Returns the id of the component that the file dependency references, if known. If not known an arbitrary identifier will be assigned.
         */
        @Nullable
        ComponentIdentifier getComponentId();
    
        /**
         * Remove this.
         */
        FileCollectionDependency getSource();
    
        FileCollectionInternal getFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1beta1/well_known_annotations.go

    	// IngressClass should be considered default. When a single IngressClass
    	// resource has this annotation set to true, new Ingress resources without a
    	// class specified will be assigned this default class.
    	AnnotationIsDefaultIngressClass = "ingressclass.kubernetes.io/is-default-class"
    
    	// AnnotationIngressClass indicates the class of an Ingress to be used when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 02 02:17:09 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/podresources/server_v1.go

    		cpusProvider:             providers.Cpus,
    		memoryProvider:           providers.Memory,
    		dynamicResourcesProvider: providers.DynamicResources,
    	}
    }
    
    // List returns information about the resources assigned to pods on the node
    func (p *v1PodResourcesServer) List(ctx context.Context, req *podresourcesv1.ListPodResourcesRequest) (*podresourcesv1.ListPodResourcesResponse, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:00:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelElement.java

        /**
         * Returns the name of this element. Each element has a name associated with it, that uniquely identifies the element amongst its siblings.
         * Some element have their name generated or automatically assigned, and for these elements the name may not be human consumable.
         */
        @Override
        String getName();
    
        /**
         * Returns a human-consumable display name for this element.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. test/fixedbugs/bug206.go

    package main
    
    import "go/ast";
    
    func g(list []ast.Expr) {
    	n := len(list)-1;
    	println(list[n].Pos());
    }
    
    
    // f is the same as g except that the expression assigned to n is inlined.
    func f(list []ast.Expr) {
    	// n := len(list)-1;
    	println(list[len(list)-1 /* n */].Pos());
    }
    
    
    func main() {
    	list := []ast.Expr{&ast.Ident{}};
    	g(list);  // this works
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 1K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/ReleasingPortAllocator.groovy

     */
    
    package org.gradle.util.ports
    
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    /**
     * A TestRule that releases any assigned ports after the test executes.
     */
    class ReleasingPortAllocator implements PortAllocator, TestRule {
        final PortAllocator delegate
        List<Integer> portsAllocated = new ArrayList<>()
    
        ReleasingPortAllocator() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/AssignmentResolverTest.kt

                assertIs<AssignmentTraceElement.RecordedAssignment>(strAssignment)
                val value = resolvedAssignments[strAssignment.lhs]
                assertIs<AssignmentResolver.AssignmentResolutionResult.Assigned>(value)
                val valueOrigin = value.objectOrigin
                assertIs<ObjectOrigin.ConstantOrigin>(valueOrigin)
                assertEquals("shared", valueOrigin.literal.value)
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/FilePropertyContainer.java

    import java.util.Iterator;
    import java.util.List;
    
    /**
     * Container for {@link TaskPropertyRegistration}s that might not have a name. The container
     * ensures that whenever parameters are iterated they are always assigned a name.
     */
    public class FilePropertyContainer<T extends TaskFilePropertyBuilder & TaskPropertyRegistration> implements Iterable<T> {
        private final List<T> properties = new ArrayList<>();
        private boolean changed;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentResolver.kt

            return existingNode.generationId < generationId
        }
    
        sealed interface AssignmentResolutionResult {
            data class Assigned(val objectOrigin: ObjectOrigin, val assignmentMethod: AssignmentMethod) : AssignmentResolutionResult
            data class Unassigned(val property: PropertyReferenceResolution) : AssignmentResolutionResult
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-launch-to-device-attribute=legacy-graph-export=false | FileCheck %s
    
    
    // Tests single TensorFlow op is hoisted out and has the correct device assigned
    // by parent `tf_device.launch`.
    // CHECK-LABEL: func @single_op_launch
    func.func @single_op_launch() {
      tf_executor.graph {
        %0:5 = tf_executor.island {
          %a = "tf.opA"() : () -> tensor<i1>
          %launch:2 = "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 17:10:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top