Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for mixer (0.05 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    				} else {
    					msg = "missing type parameter name"
    					// go.dev/issue/60812
    					if len(list) == 1 {
    						msg += " or invalid array length"
    					}
    				}
    			} else {
    				msg = "mixed named and unnamed parameters"
    			}
    			p.syntaxErrorAt(errPos, msg)
    		}
    	}
    
    	return
    }
    
    func (p *parser) badExpr() *BadExpr {
    	b := new(BadExpr)
    	b.pos = p.pos()
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. okhttp/api/okhttp.api

    	public static final field Companion Lokhttp3/MultipartBody$Companion;
    	public static final field DIGEST Lokhttp3/MediaType;
    	public static final field FORM Lokhttp3/MediaType;
    	public static final field MIXED Lokhttp3/MediaType;
    	public static final field PARALLEL Lokhttp3/MediaType;
    	public final fun -deprecated_boundary ()Ljava/lang/String;
    	public final fun -deprecated_parts ()Ljava/util/List;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    // that the calls are properly synchronized on the Go side.
    //
    // To be clear, if the calls are not properly synchronized on the Go side,
    // we will be hiding races. But when using TSAN on mixed Go C/C++ code
    // it is more important to avoid false positives, which reduce confidence
    // in the tool, than to avoid false negatives.
    const yesTsanProlog = `
    #line 1 "cgo-tsan-prolog"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK: return %[[CLUSTER_RES]]#0
      func.return %1 : tensor<*xi32>
    }
    
    // -----
    
    // Tests that resource ops with both load and store are hoisted
    // but input to load and output from store have mixed defined/undefined shapes.
    
    // CHECK-LABEL: func @same_resource_load_and_store_cast
    func.func @same_resource_load_and_store_cast() -> tensor<1xi32> {
    
      // CHECK: %[[RES_HANDLE:[0-9]*]] = "tf.VarHandleOp"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    // * Nothing. This is managed, with IP auto assigned
    //
    // Not supported:
    // Multiple hostname/IP - It is feasible but preference is to create multiple Gateways. This would also break the 1:1 mapping of GW:Service
    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    // NamedAddress - Service has no concept of named address. For cloud's that have named addresses they can be configured by annotations,
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    				} else {
    					msg = "missing type parameter name"
    					// go.dev/issue/60812
    					if len(list) == 1 {
    						msg += " or invalid array length"
    					}
    				}
    			} else {
    				msg = "mixed named and unnamed parameters"
    			}
    			p.error(errPos, msg)
    		}
    	}
    
    	// Convert list to []*ast.Field.
    	// If list contains types only, each type gets its own ast.Field.
    	if named == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Both approaches are acceptable, but you should create and follow a convention to ensure consistency across your build files.
    
    [NOTE]
    ====
    Don't get your `into()` specifications mixed up.
    For a normal copy, one to the filesystem rather than an archive, there should always be _one_ "root" `into()` that specifies the overall destination directory of the copy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	// If ALL instances have a sidecar, we enable TLS, otherwise we disable
    	// TODO(https://github.com/istio/istio/issues/27376) enable mixed deployments
    	// A service with passthrough resolution is always passthrough, regardless of the TrafficPolicy.
    	if service.Resolution == Passthrough || tp.GetLoadBalancer().GetSimple() == networking.LoadBalancerSettings_PASSTHROUGH {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top