Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 162 for below (0.05 sec)

  1. pilot/pkg/networking/core/httproute_test.go

    				buildHTTPService("test", visibility.Public, "", "default", 80),
    			},
    			nil,
    			map[string][]string{
    				"allow_any": {"*"},
    				// BUG: test should be below
    				"test.local:80": {"test.local"},
    				"test:80":       {"test"},
    			},
    			map[string]string{
    				"allow_any":     "PassthroughCluster",
    				"test.local:80": "outbound|80||test.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			// now emits DW_TAG_variable DIEs that have
    			// no name (so as to be able to describe the
    			// type and source locations of constant strings)
    			// like the second arg in the call below:
    			//
    			//     myfunction(42, "foo")
    			//
    			// If a var has no name we won't see attempts to
    			// refer to it via "C.<name>", so skip these vars
    			//
    			// See issue 53000 for more context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

          Write-VerboseServiceInfoToConsole -Service $NPD_SERVICE
        }
        else {
          Log-Output "${NPD_SERVICE} already configured."
        }
      }
    }
    
    # TODO(pjh): move the logging agent code below into a separate
    # module; it was put here temporarily to avoid disrupting the file layout in
    # the K8s release machinery.
    $LOGGINGAGENT_VERSION = '1.8.10'
    $LOGGINGAGENT_ROOT = 'C:\fluent-bit'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            if (generatedClass == null) {
                // It is possible that multiple threads will execute this branch concurrently, when the type is missing. However, the contract for `get()` below will ensure that
                // only one thread will actually generate the implementation class
                generatedClass = generatedClasses.get(type, generator);
                // Also use the generated class for itself
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        //
        //
        // D E P R E C A T E D
        //
        //
        // ----------------------------------------------------------------------------------------------------------------
        //
        // Everything below will be removed for Maven 4.0.0
        //
        // ----------------------------------------------------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Lowering conditional moves
    // If the condition is a SETxx, we can just run a CMOV from the comparison that was
    // setting the flags.
    // Legend: HI=unsigned ABOVE, CS=unsigned BELOW, CC=unsigned ABOVE EQUAL, LS=unsigned BELOW EQUAL
    (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && (is64BitInt(t) || isPtr(t))
        => (CMOVQ(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS|EQF|NEF|GTF|GEF) y x cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-NOT: _replication_info = "replicate"
    // CHECK-NOT:  device = "/device:TPU:0"
    // CHECK:      name = "nameA"
    // CHECK:      tf_device.return
    
    // A nested cluster op using result of another cluster op. In the below, opA and
    // opB go in a cluster, and opD stays outside.
    // CHECK-LABEL: func @cluster_nested_op_using_other_op
    func.func @cluster_nested_op_using_other_op() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	}
    }
    
    // addHostsFromMeshConfigProvidersHandled contains the number of providers we handle below.
    // This is to ensure this stays in sync as new handlers are added
    // STOP. DO NOT UPDATE THIS WITHOUT UPDATING extraServicesForProxy.
    const addHostsFromMeshConfigProvidersHandled = 14
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

    # and we don't know the IP of the DNS pod to pass in as --cluster-dns.
    # To set this up by hand, set this flag and change DNS_SERVER_IP.
    # Note also that you need API_HOST (defined below) for correct DNS.
    KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-""}
    ENABLE_CLUSTER_DNS=${KUBE_ENABLE_CLUSTER_DNS:-true}
    ENABLE_NODELOCAL_DNS=${KUBE_ENABLE_NODELOCAL_DNS:-false}
    DNS_SERVER_IP=${KUBE_DNS_SERVER_IP:-10.0.0.10}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

      // ALWAYS-DECOMPOSE-NOT:  "tf.AssignAddVariableOp"
      "tf.AssignAddVariableOp"(%arg0, %arg1) {dtype = "tfdtype$DT_INT32"} : (tensor<*x!tf_type.resource<tensor<2x8xi32>>>, tensor<i32>) -> ()
      func.return
    }
    
    // The tests below have the same behavior for the two passes as all ops are
    // within device cluster.
    
    // Tests that resources with subtypes are used if present.
    
    // CHECK-LABEL: func @decompose_use_subtype
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top