Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,879 for forSet (0.11 sec)

  1. android/guava/src/com/google/common/graph/Traverser.java

       * node(s) to any node reachable from the start node(s), and has no paths from any start node to
       * any other start node, such as a tree or forest.
       *
       * <p>{@code forTree()} is especially useful (versus {@code forGraph()}) in cases where the data
       * structure being traversed is, in addition to being a tree/forest, also defined <a
       * href="https://github.com/google/guava/wiki/GraphsExplained#non-recursiveness">recursively</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Traverser.java

       * node(s) to any node reachable from the start node(s), and has no paths from any start node to
       * any other start node, such as a tree or forest.
       *
       * <p>{@code forTree()} is especially useful (versus {@code forGraph()}) in cases where the data
       * structure being traversed is, in addition to being a tree/forest, also defined <a
       * href="https://github.com/google/guava/wiki/GraphsExplained#non-recursiveness">recursively</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  3. pkg/controller/ttl/ttl_controller.go

    	key, quit := ttlc.queue.Get()
    	if quit {
    		return false
    	}
    	defer ttlc.queue.Done(key)
    
    	err := ttlc.updateNodeIfNeeded(ctx, key)
    	if err == nil {
    		ttlc.queue.Forget(key)
    		return true
    	}
    
    	ttlc.queue.AddRateLimited(key)
    	utilruntime.HandleError(err)
    	return true
    }
    
    func (ttlc *Controller) getDesiredTTLSeconds() int {
    	ttlc.lock.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    func (c *DynamicFileCAContent) processNextWorkItem() bool {
    	dsKey, quit := c.queue.Get()
    	if quit {
    		return false
    	}
    	defer c.queue.Done(dsKey)
    
    	err := c.loadCABundle()
    	if err == nil {
    		c.queue.Forget(dsKey)
    		return true
    	}
    
    	utilruntime.HandleError(fmt.Errorf("%v failed with : %v", dsKey, err))
    	c.queue.AddRateLimited(dsKey)
    
    	return true
    }
    
    // Name is just an identifier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

        // Type of the op, ex: Conv2D, MatMul, Einsum... The node_name field can
        // be omitted if it is intended to match all nodes with this type.
        string op_type = 1;
        // Name of the node. This field accepts re2 regex format. If the node name
        // has enough granularity, the op_type field can be omitted.
        string node_name = 2;
        // The function scope. If set, only ops and nodes under specified functions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

    import org.gradle.internal.logging.events.RenderableOutputEvent;
    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    import org.gradle.internal.logging.events.UpdateNowEvent;
    import org.gradle.internal.logging.format.LogHeaderFormatter;
    import org.gradle.internal.operations.BuildOperationCategory;
    import org.gradle.internal.operations.OperationIdentifier;
    import org.gradle.util.internal.GUtil;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. pkg/controller/podgc/gc_controller.go

    			utilruntime.HandleError(err)
    			metrics.DeletingPodsErrorTotal.WithLabelValues(pod.Namespace, metrics.PodGCReasonOrphaned).Inc()
    		} else {
    			logger.Info("Forced deletion of orphaned Pod succeeded", "pod", klog.KObj(pod))
    		}
    		metrics.DeletingPodsTotal.WithLabelValues(pod.Namespace, metrics.PodGCReasonOrphaned).Inc()
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/archive/tar/strconv.go

    // This function may return negative numbers.
    // If parsing fails or an integer overflow occurs, err will be set.
    func (p *parser) parseNumeric(b []byte) int64 {
    	// Check for base-256 (binary) format first.
    	// If the first bit is set, then all following bits constitute a two's
    	// complement encoded number in big-endian byte order.
    	if len(b) > 0 && b[0]&0x80 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

            result.testClass('org.gradle.OkTest').assertTestPassed('ok')
            result.testClass('org.gradle.OtherTest').assertTestPassed('ok')
        }
    
        def "runs all tests in the same forked jvm"() {
            given:
            file('src/test/java/org/gradle/AbstractTest.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                public abstract class AbstractTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/config.go

    // the external linker be used to complete the link.
    func mustLinkExternal(ctxt *Link) (res bool, reason string) {
    	if ctxt.Debugvlog > 1 {
    		defer func() {
    			if res {
    				ctxt.Logf("external linking is forced by: %s\n", reason)
    			}
    		}()
    	}
    
    	if platform.MustLinkExternal(buildcfg.GOOS, buildcfg.GOARCH, false) {
    		return true, fmt.Sprintf("%s/%s requires external linking", buildcfg.GOOS, buildcfg.GOARCH)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top