Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for identical (0.59 sec)

  1. cmd/bucket-replication.go

    		"X-Amz-Object-Lock-Retain-Until-Date",
    		"X-Amz-Object-Lock-Legal-Hold",
    		"X-Amz-Website-Redirect-Location",
    		"X-Amz-Meta-",
    	}
    
    	// compare metadata on both maps to see if meta is identical
    	compareMeta1 := make(map[string]string)
    	for k, v := range oi1.UserDefined {
    		var found bool
    		for _, prefix := range compareKeys {
    			if !stringsHasPrefixFold(k, prefix) {
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	// from db and determine if it must prepare the stmt again by
    	// inspecting css.
    	cg   stmtConnGrabber
    	cgds *driverStmt
    
    	// parentStmt is set when a transaction-specific statement
    	// is requested from an identical statement prepared on the same
    	// conn. parentStmt is used to track the dependency of this statement
    	// on its originating ("parent") statement so that parentStmt may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    //     The cluster is distinct.
    //  4. Another service, B', with P' -> T'. There is no conflicts here at all.
    func serviceCases(t TrafficContext) {
    	for _, c := range t.Apps.A {
    		c := c
    
    		// Case 1
    		// Identical to port "http" or service B, just behind another service name
    		svc := fmt.Sprintf(`apiVersion: v1
    kind: Service
    metadata:
      name: b-alt-1
      labels:
        app: b
    spec:
      ports:
      - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // TensorListReserveOp, EmptyTensorListOp and TensorListFromTensor ops. It
      // refines the element shape if all tensors written to the list across all
      // mutations have identical static shape.
      bool InferShapeForTensorListInitOps(Operation* op);
    
      // Conservatively infers shape of output tenorlist and item based on
      // input tensorlist's element shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      }
      func.return
      // expected-remark@above {{ID: 7}}
      // expected-remark@above {{Sinks: {6}}}
    }
    
    // -----
    
    // Tests that two resources allocated with identical non-empty `shared_name`
    // attributes are dependent. That means, `%handle1` and `%handle2` point to
    // the same resources and the second `InitializeTableV2` op depends on the
    // first one.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (BitRev8    x) => (SRLconst [56] (RBIT <typ.UInt64> x))
    
    // In fact, UMOD will be translated into UREM instruction, and UREM is originally translated into
    // UDIV and MSUB instructions. But if there is already an identical UDIV instruction just before or
    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    // The purpose of this rule is to have this extra UDIV instruction removed in CSE pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    //
    // The linearized index paths can be returned back to a structured
    // representation (e.g. to emit C structs matching a signature) with a simple
    // algorithm that recurses on each run of index paths with identical first
    // elements.
    class StructuredValueLinearizer {
     public:
      StructuredValueLinearizer(const StructuredValue& value,
                                mlir::MLIRContext* context);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    				}
    				res.Body.Close()
    				if res.Request != req {
    					t.Errorf("Response.Request != original request; want identical Request")
    				}
    			}
    
    			mu.Lock()
    			got := logbuf.String()
    			mu.Unlock()
    			want := fmt.Sprintf(`Dial
    Write("%s")
    Handler
    intentional write failure
    Retried.
    Dial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    		f = MakeFunc(TypeOf(f), func([]Value) []Value {
    			var c <-chan int = make(chan int)
    			return []Value{ValueOf(c)}
    		}).Interface().(func() chan int)
    		f()
    	})
    	// Two named types which are otherwise identical.
    	shouldPanic("", func() {
    		type T struct{ a, b, c int }
    		type U struct{ a, b, c int }
    		var f func() T
    		f = MakeFunc(TypeOf(f), func([]Value) []Value {
    			return []Value{ValueOf(U{a: 1, b: 2, c: 3})}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/net/http/server.go

    func ListenAndServe(addr string, handler Handler) error {
    	server := &Server{Addr: addr, Handler: handler}
    	return server.ListenAndServe()
    }
    
    // ListenAndServeTLS acts identically to [ListenAndServe], except that it
    // expects HTTPS connections. Additionally, files containing a certificate and
    // matching private key for the server must be provided. If the certificate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top