Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 366 for Marks (0.26 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/FilteringClassLoader.java

            }
    
            /**
             * Marks a single class as visible.
             *
             * @param clazz the class
             */
            public void allowClass(Class<?> clazz) {
                classNames.add(clazz.getName());
            }
    
            /**
             * Marks a single class as not visible.
             *
             * @param className the class name
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. pkg/volume/util/resize_util.go

    	return updatedPVC, err
    }
    
    // MarkResizeFinished marks all resizing as done
    func MarkResizeFinished(
    	pvc *v1.PersistentVolumeClaim,
    	newSize resource.Quantity,
    	kubeClient clientset.Interface) (*v1.PersistentVolumeClaim, error) {
    	return MarkFSResizeFinished(pvc, newSize, kubeClient)
    }
    
    // MarkFSResizeFinished marks file system resizing as done
    func MarkFSResizeFinished(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

    import spock.lang.Issue
    
    class TaskUpToDateIntegrationTest extends AbstractIntegrationSpec {
        @Issue("https://issues.gradle.org/browse/GRADLE-3540")
        def "order of #annotation marks task not up-to-date"() {
            buildFile << """
                class MyTask extends DefaultTask {
                    @Output${files ? "Files" : "Directories"} FileCollection out
    
                    @TaskAction def exec() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        /**
         * Retrieves the current convention.
         */
        public abstract S convention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention.
         */
        public abstract S setToConvention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention,
         * unless it is already an explicit value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/reloctype.go

    	R_USETYPE
    	// R_USEIFACE marks a type is converted to an interface in the function this
    	// relocation is applied to. The target is a type descriptor or an itab
    	// (in the latter case it refers to the concrete type contained in the itab).
    	// This is a marker relocation (0-sized), for the linker's reachabililty
    	// analysis.
    	R_USEIFACE
    	// R_USEIFACEMETHOD marks an interface method that is used in the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_executor.go

    type ActualStateOfWorldMounterUpdater interface {
    	// Marks the specified volume as mounted to the specified pod
    	MarkVolumeAsMounted(markVolumeOpts MarkVolumeOpts) error
    
    	// Marks the specified volume as unmounted from the specified pod
    	MarkVolumeAsUnmounted(podName volumetypes.UniquePodName, volumeName v1.UniqueVolumeName) error
    
    	// MarkVolumeMountAsUncertain marks state of volume mount for the pod uncertain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                artifacts << artifact
                return this
            }
    
            /**
             * Marks that this node was selected due to conflict resolution.
             */
            NodeBuilder byConflictResolution() {
                reasons << 'conflict resolution'
                this
            }
    
            /**
             * Marks that this node was selected due to conflict resolution.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

        }
    
        def "marks project dependency that can't be resolved as 'FAILED'"() {
            given:
            createDirs("A", "B", "C")
            settingsFile << "include 'A', 'B', 'C'"
    
            // Fail due to missing target configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            result2.complete
            result2.files.file as List == [header]
        }
    
        def "marks macro include as unresolved when there are no definitions of the macro"() {
            expect:
            def result = resolve(include('TEST'))
            !result.complete
            result.files.empty
        }
    
        def "marks macro function include as unresolved when there are no definitions of the macro"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Second, it would be nice to allow Unicode marks as well as letters,
    // but marks include combining marks, and then we must deal not
    // only with case folding but also normalization: both U+00E9 ('é')
    // and U+0065 U+0301 ('e' followed by combining acute accent)
    // look the same on the page and are treated by some file systems
    // as the same path. If we do allow Unicode marks in paths, there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top