Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,710 for locations (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract.go

    // work, for example, with the "scale" subresources of Deployment, ReplicaSet and
    // StatefulSet. While the spec.replicas, status.replicas fields are in the same
    // exact field path locations as they are in autoscaling.Scale, the selector
    // fields are in different locations, and are a different type.
    func ExtractInto(object runtime.Object, objectType typed.ParseableType, fieldManager string, applyConfiguration interface{}, subresource string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 03:17:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/OutputChangeListener.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @EventScope(Scope.Build.class)
    @ServiceScope(Scope.Gradle.class)
    public interface OutputChangeListener {
        /**
         * Invoked when some locations on disk have been changed or are about to be changed.
         * This happens for example just before and after the task actions are executed or the outputs are loaded from the cache.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

    import static org.gradle.integtests.fixtures.executer.TaskOrderSpecs.any
    
    class TaskFilePropertiesIntegrationTest extends AbstractIntegrationSpec {
    
        def "task can use Path to represent input and output locations on annotated properties"() {
            buildFile """
                import java.nio.file.Path
                import java.nio.file.Files
    
                class TransformTask extends DefaultTask {
                    @InputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

        ProblemDefinition getDefinition();
    
        @Nullable
        String getContextualLabel();
    
        /**
         * Returns solutions and advice that contain context-sensitive data, e.g. the message contains references to variables, locations, etc.
         */
        List<String> getSolutions();
    
        /**
         * A long description detailing the problem.
         * <p>
         * Details can elaborate on the problem, and provide more information about the problem.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/fileAndDirectoryProperty/groovy/build.gradle

            srcFile.text = "public class ${className} { ... }"
        }
    }
    
    // Create the source generation task
    tasks.register('generate', GenerateSource) {
        // Configure the locations, relative to the project and build directories
        configFile = layout.projectDirectory.file('src/config.txt')
        outputDir = layout.buildDirectory.dir('generated-source')
    }
    
    // Change the build directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/scripts/ScriptOriginUtil.java

         * independent of its absolute path.
         *
         * The identifier depends on the original class name and the content hash of the script.
         * As such it can be used for build caching between different locations.
         */
        public static String getOriginClassIdentifier(Object value) {
            if (value instanceof ScriptOrigin) {
                ScriptOrigin origin = (ScriptOrigin) value;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 24 12:36:00 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/ByteOutputTest.groovy

            file = new RandomAccessFile(tmpDir.file("test.bin"), "rw")
            output = new ByteOutput(file)
        }
    
        def cleanup() {
            file.close()
        }
    
        def "can reuse to write to different locations in backing file"() {
            when:
            def stream = output.start(0)
            stream.writeInt(123)
            stream.writeByte(12)
            output.done()
    
            then:
            file.length() == 5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

      - 36916
    
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Improved** Pilot will now load its DNS serving certificate from well known locations:
      ```
      /var/run/secrets/istiod/tls/tls.crt
      /var/run/secrets/istiod/tls/tls.key
      /var/run/secrets/istiod/ca/root-cert.pem
      ```
      The CA path will alternatively be loaded from: `/var/run/secrets/tls/ca.crt`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		if f.ID < uint64(len(functionIds)) {
    			functionIds[f.ID] = f
    		} else {
    			functions[f.ID] = f
    		}
    	}
    
    	locations := make(map[uint64]*Location, len(p.Location))
    	locationIds := make([]*Location, len(p.Location)+1)
    	for _, l := range p.Location {
    		if id := l.mappingIDX; id < uint64(len(mappingIds)) {
    			l.Mapping = mappingIds[id]
    		} else {
    			l.Mapping = mappings[id]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        ImmutableSet<ClassPath.LocationInfo> locations =
            ClassPath.locationsFrom(getClass().getClassLoader());
        assertThat(locations).isNotEmpty();
        for (ClassPath.LocationInfo location : locations) {
          ImmutableSet<ResourceInfo> resources = location.scanResources();
          assertThat(location.scanResources()).containsExactlyElementsIn(resources);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top