Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for relabel (0.14 sec)

  1. guava/src/com/google/common/collect/Sets.java

       * {@link Predicate#apply}. Do not provide a predicate such as {@code
       * Predicates.instanceOf(ArrayList.class)}, which is inconsistent with equals. (See {@link
       * Iterables#filter(Iterable, Class)} for related functionality.)
       *
       * <p><b>Java 8+ users:</b> many use cases for this method are better addressed by {@link
       * java.util.stream.Stream#filter}. This method is not being deprecated, but we gently encourage
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	return map_GroupVersionForDiscovery
    }
    
    var map_LabelSelector = map[string]string{
    	"":                 "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    			"-A", string(kubeletFirewallChain),
    			"-m", "comment", "--comment", `"block incoming localnet connections"`,
    			"-d", "127.0.0.0/8",
    			"!", "-s", "127.0.0.0/8",
    			"-m", "conntrack",
    			"!", "--ctstate", "RELATED,ESTABLISHED,DNAT",
    			"-j", "DROP",
    		)
    	}
    
    	// Accumulate NAT chains to keep.
    	activeNATChains := sets.New[utiliptables.Chain]()
    
    	// To avoid growing this slice, we arbitrarily set its size to 64,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    				if ft.lens == nil {
    					ft.lens = map[ID]*Value{}
    				}
    				// Set all len Values for the same slice as equal in the poset.
    				// The poset handles transitive relations, so Values related to
    				// any OpSliceLen for this slice will be correctly related to others.
    				if l, ok := ft.lens[v.Args[0].ID]; ok {
    					ft.update(b, v, l, signed, eq)
    				} else {
    					ft.lens[v.Args[0].ID] = v
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    	// in a uintptr.
    	maxAlloc = (1 << heapAddrBits) - (1-_64bit)*1
    
    	// The number of bits in a heap address, the size of heap
    	// arenas, and the L1 and L2 arena map sizes are related by
    	//
    	//   (1 << addr bits) = arena size * L1 entries * L2 entries
    	//
    	// Currently, we balance these as follows:
    	//
    	//       Platform  Addr bits  Arena size  L1 entries   L2 entries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    If a build fails, use the HTML report to reason about the reported problems related to the failure.
    Continue running more useful tasks.
    +
    This will give you a good overview of the nature of the problems your build and plugins are facing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      llvm::StringMap<Attribute> identifier_to_attr;
    
      for (Operation& inner_op : float_func.getBody().front().getOperations()) {
        if (!inner_op.hasAttr(kAttrMapAttribute)) continue;
        // Insert quantization related attribute if they exists. Quantization
        // attributes are generated in the prepare pass so the attr_map doesn't
        // contain the attribute names.
        // TransferQuantizationAttributes(rewriter, inner_op, attrs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_input_using_classpath_annotations]]
    === Using the classpath annotations
    
    Besides `@InputFiles`, for JVM-related tasks Gradle understands the concept of classpath inputs. Both runtime and compile classpaths are treated differently when Gradle is looking for changes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    type Tokenmandatorylabel struct {
    	Label SIDAndAttributes
    }
    
    func (tml *Tokenmandatorylabel) Size() uint32 {
    	return uint32(unsafe.Sizeof(Tokenmandatorylabel{})) + GetLengthSid(tml.Label.Sid)
    }
    
    // Authorization Functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   pointers (in particular, C strings).  Therefore, if you use it
    //   with two C strings, you are testing how their locations in memory
    //   are related, not how their content is related.  To compare two C
    //   strings by content, use {ASSERT|EXPECT}_STR*().
    //
    //   3. {ASSERT|EXPECT}_EQ(expected, actual) is preferred to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top