Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for sameId (0.38 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    <1> Gets a reference of type `Task` to the existing task named `check`
    <2> Registers a new untyped task named `myTask1`
    <3> Gets a reference to the existing task named `compileJava` of type `JavaCompile`
    <4> Registers a new task named `myCopy1` of type `Copy`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    		ev.args[1] = uint64(NoTask)
    	}
    
    	// Validate the name and record it. We'll need to pass it through to
    	// EvUserTaskEnd.
    	nameID := stringID(ev.args[2])
    	name, ok := evt.strings.get(nameID)
    	if !ok {
    		return curCtx, false, fmt.Errorf("invalid string ID %v for %v event", nameID, ev.typ)
    	}
    	o.activeTasks[id] = taskState{name: name, parentID: parentID}
    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    				if volume, err = ctrl.updateVolumePhase(ctx, volume, v1.VolumeReleased, ""); err != nil {
    					// Nothing was saved; we will fall back into the same condition
    					// in the next call to this method
    					return err
    				}
    			}
    			if err = ctrl.reclaimVolume(ctx, volume); err != nil {
    				// Release failed, we will fall back into the same condition
    				// in the next call to this method
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

                      protected Set<String> create(String[] elements) {
                        return Sets.newConcurrentHashSet(Arrays.asList(elements));
                      }
                    })
                .named("Sets.newConcurrentHashSet")
                .withFeatures(CollectionSize.ANY, SetFeature.GENERAL_PURPOSE)
                .createTestSuite());
    
        suite.addTest(
            SetTestSuiteBuilder.using(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            0 * resolver._
            config.state == RESOLVED
    
            // We get back the same resolution results
            previousResolutionResult == nextResolutionResult
    
            // We get back the same resolved configuration
            previousResolvedConfiguration == nextResolvedConfiguration
    
            // And the same files
            previousFiles == nextFiles
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    maxParallelUsages = 1
                }
    
                task named(type: Consumer) {
                    // override service with an explicit assignment
                    counter.set(counterProvider2)
                    usesService(counterProvider2)
                }
            """
            enableStableConfigurationCache()
    
            when:
            succeeds 'named'
    
            then:
            outputDoesNotContain "'Task#usesService'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // 	  "import", "let", "loop", "package", "namespace", "return".
      // Examples:
      //   - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"}
      //   - Expression accessing a property named "x-prop": {"Expression": "object.x__dash__prop > 0"}
      //   - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/runtime/asm_amd64.s

    	MOVQ	DI, 0(SP)
    	MOVQ	AX, 8(SP)
    	MOVQ	BX, 16(SP)
    	MOVQ	CX, 24(SP)
    	MOVQ	DX, 32(SP)
    	// DI already saved
    	MOVQ	SI, 40(SP)
    	MOVQ	BP, 48(SP)
    	MOVQ	R8, 56(SP)
    	MOVQ	R9, 64(SP)
    	MOVQ	R10, 72(SP)
    	MOVQ	R11, 80(SP)
    	// R12 already saved
    	// R13 already saved
    	// R14 is g
    	MOVQ	R15, 88(SP)
    
    	CALL	runtime·wbBufFlush(SB)
    
    	MOVQ	0(SP), DI
    	MOVQ	8(SP), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Now that these types implement link:{javadocPath}/org/gradle/api/Named.html[`Named`], these classes are no longer necessary and have been deprecated.
    They will be removed in Gradle 9.0.
    Use link:{javadocPath}/org/gradle/api/Named.Namer.html#INSTANCE[`Named.Namer.INSTANCE`] instead.
    
    The superinterface, link:{javadocPath}/org/gradle/api/Namer.html[`Namer`], is *not* being deprecated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    	// relevant nor actionable.
    	type modFlags int
    	const (
    		resolved modFlags = 1 << iota // version resolved by 'go get'
    		named                         // explicitly named on command line or provides a named package
    		hasPkg                        // needed to build named packages
    		direct                        // provides a direct dependency of the main module
    	)
    	relevantMods := make(map[module.Version]modFlags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top