Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 203 for flive (0.05 sec)

  1. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    import static org.gradle.test.fixtures.ConcurrentTestUtil.poll
    
    // This test doesn't live in :instrumentation-agent to avoid the latter being implicitly added to
    // the test runtime classpath as part of the main source set's output.
    // It is important to have the agent appended to the classpath of all integration tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof.go

    // the profile away from live data and toward garbage.
    // If there has been no garbage collection at all, the heap profile reports
    // all known allocations. This exception helps mainly in programs running
    // without garbage collection enabled, usually for debugging purposes.
    //
    // The heap profile tracks both the allocation sites for all live objects in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

        }
    
        @Nonnull
        @Override
        public Class<T> getType() {
            return serviceDetails.getImplementationType();
        }
    
        /**
         * When true, this service should be kept alive until the end of the build.
         */
        public boolean isKeepAlive() {
            return keepAlive;
        }
    
        public void keepAlive() {
            keepAlive = true;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/unique/handle.go

    	// and create values that we might discard. By keeping
    	// the first one we make around, we can avoid generating
    	// more than one per racing thread.
    	var (
    		toInsert     *T // Keep this around to keep it alive.
    		toInsertWeak weak.Pointer[T]
    	)
    	newValue := func() weak.Pointer[T] {
    		if toInsert == nil {
    			toInsert = new(T)
    			*toInsert = clone(value, &m.cloneSeq)
    			toInsertWeak = weak.Make(toInsert)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * </ul>
         *
         * <p>The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.</p>
         *
         * <p>The returned file collection maintains the iteration order of the supplied paths.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

                // Not supported on Java 6
            }
        }
    
        private final Map<Object, Object> userData = new HashMap<Object, Object>();
    
        /**
         * This method can be used to store user data that should live among with this classloader
         *
         * @param consumerId the consumer
         * @param onMiss called to create the initial data, when not found
         * @param <T> the type of data
         * @return user data
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // multiple parallel ops may be live at any particular point.
      StackResourceToOps stack_down_;
    
      // Hold the last set of reads and writes that will be depended on by
      // ops with lesser nesting depths. For example, the last read/writes
      // with parallel_ids `{group0:branch0}` and `{group0:branch1}` live at
      // stack depth 1 and are depended on by ops with parallel_ids `{}`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/apis.go

    	// main.XYZ's prolog (which was zero'd) and hit the non-zero
    	// counter value corresponding to the "HERE" block, which will
    	// then be interpreted as the start of another live function.
    	// Things will go downhill from there.
    	//
    	// This same scenario is also a potential risk if the program is
    	// running on an architecture that permits reordering of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. cni/pkg/config/config.go

    	K8sServiceProtocol string
    	// KUBERNETES_SERVICE_HOST
    	K8sServiceHost string
    	// KUBERNETES_SERVICE_PORT
    	K8sServicePort string
    	// KUBERNETES_NODE_NAME
    	K8sNodeName string
    	// Path where service account secrets live, e.g. "/var/run/secrets/kubernetes.io/serviceaccount"
    	// Tests may override.
    	K8sServiceAccountPath string
    
    	// Directory from where the CNI binaries should be copied
    	CNIBinSourceDir string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      properties:
                                        interval:
                                          description: The time duration between keep-alive
                                            probes.
                                          type: string
                                          x-kubernetes-validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
Back to top