Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 406 for reachable (0.16 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild/shade/extension/ShadedJarExtension.kt

         */
        abstract val keepPackages: SetProperty<String>
    
        /**
         * Do not rename classes in the unshaded package hierarchies. Always includes 'java'.
         */
        abstract val unshadedPackages: SetProperty<String>
    
        /**
         * Do not retain classes in the ignore packages hierarchies, unless reachable from some other retained class.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/internalbootstrap/default-internal.go

    // reachable from this map.
    var MandatoryFlowSchemas = internalizeFSes(bootstrap.MandatoryFlowSchemas)
    
    // MandatoryPriorityLevelConfigurations holds the untyped renditions of the
    // mandatory priority level configuration objects.  In this map the
    // key is the object's name and the value is the
    // `*PriorityLevelConfiguration`.  Nobody should mutate anything
    // reachable from this map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

    import javax.annotation.Nullable;
    
    public interface ViewBuilder<T> {
    
        /**
         * Mixes the given object into all views of the given type created using {@link #build(Object)}.
         * Applied to all views reachable from created views. The mix-in object should be serializable.
         *
         * When a given method cannot be found on the source object for a view, the mix-in object is searched for a compatible method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. releasenotes/notes/35884.yaml

    area: traffic-management
    releaseNotes:
      - |
        **Updated** `WorkloadEntry` resources will be read across clusters and no longer need to be manually mirrored to other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 03 22:48:19 UTC 2021
    - 335 bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/ingress.go

    func (c *ingressImpl) Cluster() cluster.Cluster {
    	return c.cluster
    }
    
    // HTTPAddresses returns the externally reachable HTTP hosts and port (80) of the component.
    func (c *ingressImpl) HTTPAddresses() ([]string, []int) {
    	return c.AddressesForPort(80)
    }
    
    // TCPAddresses returns the externally reachable TCP hosts and port (31400) of the component.
    func (c *ingressImpl) TCPAddresses() ([]string, []int) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_identity_pruning.mlir

        tf_device.return %1#0, %1#1 : tensor<i32>, tensor<f32>
      }) : () -> (tensor<i32>, tensor<f32>)
      func.return
    }
    
    // Tests transitive Identity ops reachable from the cluster are pruned away.
    
    // CHECK-LABEL: func @testTransitiveIdentity
    // CHECK-SAME: ([[ARG0:%.*]]: tensor<i32>)
    func.func @testTransitiveIdentity(%arg0: tensor<i32>) {
      // CHECK:      "tf_device.cluster"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/deadcode_test.go

    			}
    			for _, pos := range test.pos {
    				if !bytes.Contains(out, []byte(pos+"\n")) {
    					t.Errorf("%s should be reachable. Output:\n%s", pos, out)
    				}
    			}
    			for _, neg := range test.neg {
    				if bytes.Contains(out, []byte(neg+"\n")) {
    					t.Errorf("%s should not be reachable. Output:\n%s", neg, out)
    				}
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:07:26 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/visitor.h

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Walks the function by following function call chains and calling the callback
    // for each reachable function (including `func`). Each function is visited only
    // once even if it's called from multiple places and/or recursively.
    //
    // The current implementation follows direct calls to `mlir::func::FuncOp` only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/internal/weak/pointer.go

    weakly-pointed-to object becomes eligible for reclamation by the garbage
    collector.
    More specifically, weak pointers become nil as soon as the garbage collector
    identifies that the object is unreachable, before it is made reachable
    again by a finalizer.
    In terms of the C# language, these semantics are roughly equivalent to the
    the semantics of "short" weak references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/NodeGroup.java

    import javax.annotation.Nullable;
    
    /**
     * <p>Represents the reason why a node is included in the work graph. In general, nodes are included in the graph because they are either a "root node" or they are reachable from one or more "root nodes"
     * or both. There are two basic kind of "root nodes":</p>
     * <ul>
     *     <li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 19 19:58:07 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top