Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 4,770 for happens (0.12 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

    import java.util.Map;
    
    /**
     * Fired each time a transform execution is identified by the execution engine.
     * <p>
     * The resulting invocation may be executed at a later point.
     * Most of the time, the execution happens directly after the identification, either as
     * part of a planned transform step or when resolving an artifact view.
     *
     * @since 8.3
     */
    public interface IdentifyTransformExecutionProgressDetails {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/files/profile-demo.yaml

          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/profile-demo.yaml

          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/runtime/defs_linux.go

    // definitions for struct sigaction, struct timespec, etc.
    // We want the kernel ones, which are in the asm/* headers.
    // But then we'd get conflicts when we include the system
    // headers for things like ucontext_t, so that happens in
    // a separate file, defs1.go.
    
    #define	_SYS_TYPES_H	// avoid inclusion of sys/types.h
    #include <asm/posix_types.h>
    #define size_t __kernel_size_t
    #include <asm/signal.h>
    #include <asm/siginfo.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java

     *
     * The root locator is usually looked up from the plexus container.
     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
     * The default implementation will look for a {@code .mvn} child directory
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/properties/DefaultSystemPropertiesInstaller.java

            this.gradleInternal = gradleInternal;
        }
    
        @Override
        public void setSystemPropertiesFrom(GradleProperties gradleProperties) {
            // TODO:configuration-cache What happens when a system property is set from a Gradle property and
            //    that same system property is then used to set a Gradle property from an included build?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 11:21:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

                        dependencies {
                            compile 'test:test:1.2'
                        }
                        tasks.register('resolve') {
                            // Not a dependency, so that cloning happens at execution time (in parallel)
                            doLast {
                                configurations.compile.each { }
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     *
     * When the hierarchy is first registered via {@link #registerProbe(File)}, we don't yet create the probe.
     * That only happens when the hierarchy is actually read or written by Gradle, in which case
     * {@link #armWatchProbe(File)} is called.
     *
     * When the probe is armed, a probe file is created (or re-created) under the hierarchy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue8048.go

    	// the frame entirely.
    	var x *int
    	var b bool
    	if b {
    		y := make([]int, 1)
    		runtime.GC()
    		x = &y[0]
    	}
    	println(*x)
    }
    
    func test2() {
    	// Same as test1, but the fault happens in the function with the defer.
    	// The runtime should see the defer and garbage collect the frame
    	// as if the PC were immediately after the defer statement.
    	defer func() {
    		runtime.GC()
    		recover()
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

    import org.gradle.internal.resolve.result.BuildableArtifactSetResolveResult;
    
    /**
     * State for a component instance that is used to perform artifact resolution.
     *
     * <p>Resolution happens in multiple steps. The first is to calculate the dependency graph, and the subsequent steps select artifacts. Artifact resolution is broken down into 3 main steps:</p>
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top