Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 150 for strref (0.07 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/DefaultPathKeyFileStoreTest.groovy

            when:
            store.move("a", a)
    
            then:
            def stored = store.get("a")
            stored.file.directory
            stored.file == fsBase.file("a")
            fsBase.file("a").assertHasDescendants("child-1", "dir/child-2")
            !a.exists()
        }
    
        def "can add file to filestore"() {
            when:
            store.add("a", { File f -> f.text = "abc"} as Action<File>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 20 09:57:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/reparse_windows.go

    	// Flags specifies whether the substitute name is a full path name or
    	// a path name relative to the directory containing the symbolic link.
    	Flags      uint32
    	PathBuffer [1]uint16
    }
    
    // Path returns path stored in rb.
    func (rb *SymbolicLinkReparseBuffer) Path() string {
    	n1 := rb.SubstituteNameOffset / 2
    	n2 := (rb.SubstituteNameOffset + rb.SubstituteNameLength) / 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 07:15:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

                    synchronized(actions) {
                        actions.add(registeredFlowAction)
                    }
                }
    
                override fun store(): Pair<Any, State> {
                    return actions to Stored(actions)
                }
            }
    
            class Stored(override val pendingActions: List<RegisteredFlowAction>) : State()
    
            class Loaded(override val pendingActions: List<RegisteredFlowAction>) : State() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    Hello world!
    
    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    == Bundle the application
    
    The `application` plugin also bundles the application, with all its dependencies, for you.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/RunEclipseSynchronizationTasks.java

     *
     * This is a special tooling model as it does not provide any information. However, when requested, Gradle will
     * override the client-provided tasks with the ones stored in the {@code eclipse.synchronizationTasks} property.
     *
     * This allows Buildship to run tasks before the model loading and load the models in a single step.
     *
     * @since 5.4
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pkg/kubelet/container/cache.go

    	lock sync.RWMutex
    	// Map that stores the pod statuses.
    	pods map[types.UID]*data
    	// A global timestamp represents how fresh the cached data is. All
    	// cache content is at the least newer than this timestamp. Note that the
    	// timestamp is nil after initialization, and will only become non-nil when
    	// it is ready to serve the cached statuses.
    	timestamp *time.Time
    	// Map that stores the subscriber records.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_386.s

    	MOVL	ptr+0(FP), BX
    	MOVL	val+4(FP), AX
    	XCHGL	AX, 0(BX)
    	RET
    
    TEXT ·Store(SB), NOSPLIT, $0-8
    	MOVL	ptr+0(FP), BX
    	MOVL	val+4(FP), AX
    	XCHGL	AX, 0(BX)
    	RET
    
    TEXT ·StoreRel(SB), NOSPLIT, $0-8
    	JMP	·Store(SB)
    
    TEXT ·StoreReluintptr(SB), NOSPLIT, $0-8
    	JMP	·Store(SB)
    
    // uint64 atomicload64(uint64 volatile* addr);
    TEXT ·Load64(SB), NOSPLIT, $0-12
    	NO_LOCAL_POINTERS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/output/register.go

    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&BootstrapToken{},
    		&Images{},
    		&UpgradePlan{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 17:11:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

            val property: Property<String>
        }
    
        @Test
        fun `can serialize Java lambda with Gradle model`() {
            val stored = newInstance<Dsl>().apply {
                property.set("42")
            }
            val loaded = valueCarriedBy(roundtripOf(isolatedActionLambdaWith(stored)))
            assertThat(
                loaded.property.get(),
                equalTo("42")
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InPlaceClasspathBuilderTest.groovy

            def file = tmpDir.file("thing.zip")
    
            when:
            builder.jar(file) {
                it.put("store.txt", "bytes".bytes, ClasspathEntryVisitor.Entry.CompressionMethod.STORED)
                it.put("undefined.txt", "bytes".bytes, ClasspathEntryVisitor.Entry.CompressionMethod.UNDEFINED)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top