Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 119 for tracking (0.19 sec)

  1. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    operator.istio.io/component: "Pilot" release: istio data: # Configuration file for the mesh networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- defaultConfig: discoveryAddress: istiod-1-9-5.istio-system.svc:15012 proxyMetadata: {} tracing: zipkin: address: zipkin.istio-system:9411 enablePrometheusMerg: true rootNamespace: istio-system trustDomain: cluster.local --- apiVersion: v1 kind: ConfigMap metadata: name: istio-sidecar-injector-1-9-5 namespace: istio-system labels: istio.io/rev:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  2. tests/integration/security/authz_test.go

    						// Test matches for `/allow/admin/{**}`
    						{
    							path:  "/allow/admin/",
    							allow: true,
    						},
    						{
    							// When `**` is the last segment and operator in the template, the path must have a trailing `/` to match
    							path:  "/allow/admin",
    							allow: false,
    						},
    						{
    							path:  "/allow/user/",
    							allow: false,
    						},
    						{
    							path:  "/allow/admin?param=value",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    				}
    				if len(m.serverName) != 0 {
    					// Multiple names of the same name_type are prohibited.
    					return false
    				}
    				m.serverName = string(serverName)
    				// An SNI value may not include a trailing dot.
    				if strings.HasSuffix(m.serverName, ".") {
    					return false
    				}
    			}
    		case extensionStatusRequest:
    			// RFC 4366, Section 3.6
    			var statusType uint8
    			var ignored cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    		if !bytes.HasPrefix(line, prefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

       * @param size the desired size of each partition
       * @return an iterator of immutable lists containing the elements of {@code iterator} divided into
       *     partitions (the final iterable may have trailing null elements)
       * @throws IllegalArgumentException if {@code size} is nonpositive
       */
      public static <T extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

       * @param size the desired size of each partition
       * @return an iterator of immutable lists containing the elements of {@code iterator} divided into
       *     partitions (the final iterable may have trailing null elements)
       * @throws IllegalArgumentException if {@code size} is nonpositive
       */
      public static <T extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

                fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
                  diag << "Shapes of x and the first output should be compatible";
                });
          }
        }
    
        // For training, mean and variance is calculated from input values.
        if (is_training.getValue()) {
          auto input_type = mlir::dyn_cast_or_null<RankedTensorType>(
              fused_batch_norm_op.getX().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

     protected:
      // This flag will control the behavior of error emitting during rewrite:
      // 1) If it's true, then patterns will only emit errors during debug or
      // tracing mode. 2) If it's false, then patterns will emit standard errors
      // when there is a rewrite failure.
      bool allow_tensorlist_pass_through_;
    
      // This flag will control the behavior of setting the batch size one when the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // Training with non-broadcastable shape
      %cst = arith.constant dense<0.0> : tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			}
    		}
    	}
    
    	invalid := []string{
    		"1.1.M",
    		"1+1.0M",
    		"0.1mi",
    		"0.1am",
    		"aoeu",
    		".5i",
    		"1i",
    		"-3.01i",
    		"-3.01e-",
    
    		// trailing whitespace is forbidden
    		" 1",
    		"1 ",
    	}
    	for _, item := range invalid {
    		_, err := ParseQuantity(item)
    		if err == nil {
    			t.Errorf("%v parsed unexpectedly", item)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top