Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for IsSame (0.15 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	{as: obj.ANOP, a1: C_REG, type_: 0, size: 0},   // to preserve previous behavior
    	{as: obj.ANOP, a1: C_FREG, type_: 0, size: 0},
    	{as: obj.ADUFFZERO, a6: C_BRA, type_: 11, size: 4}, // same as ABR/ABL
    	{as: obj.ADUFFCOPY, a6: C_BRA, type_: 11, size: 4}, // same as ABR/ABL
    	{as: obj.APCALIGN, a1: C_32CON, type_: 0, size: 0}, // align code
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    // or returning an existing connection from the connection pool. Conn will
    // block until either a connection is returned or ctx is canceled.
    // Queries run on the same Conn will be run in the same database session.
    //
    // Every Conn must be returned to the database pool after use by
    // calling [Conn.Close].
    func (db *DB) Conn(ctx context.Context) (*Conn, error) {
    	var dc *driverConn
    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. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        auto& node = feeds_by_node[tensor.node()];
        if (!node.insert({tensor.index(), &input}).second)
          return errors::FailedPrecondition(
              "Multiple feeds for the same output tensor '", tensor.ToString(),
              "'");
      }
    
      return feeds_by_node;
    }
    
    // Creates a unique name for a node that will be replacing a feed output tensor.
    std::string GetUniqueNodeName(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    				t.Fatalf("Manager should report disk pressure since soft threshold was met")
    			}
    
    			// verify image, container or both gc were called.
    			// split filesystem can have container gc called without image.
    			// same filesystem should have both.
    			if diskGC.imageGCInvoked != tc.expectImageGcCall && diskGC.containerGCInvoked != tc.expectContainerGcCall {
    				t.Fatalf("Manager should have invoked image gc")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/reflect/value.go

    		// so v.ptr + offset is still the correct address.
    		val := add(v.ptr, offset, "same as &v[i], i < tt.len")
    		fl := v.flag&(flagIndir|flagAddr) | v.flag.ro() | flag(typ.Kind()) // bits same as overall array
    		return Value{typ, val, fl}
    
    	case Slice:
    		// Element flag same as Elem of Pointer.
    		// Addressable, indirect, possibly read-only.
    		s := (*unsafeheader.Slice)(v.ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    		},
    		}, true),
    		expectedError: `webhooks[0].matchConditions[0].expression: Invalid value: "object.x in [1, 2,": compilation failed: ERROR: <input>:1:19: Syntax error: missing ']' at '<EOF>'`,
    	}, {
    		name: "unique names same hook",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    			ClientConfig: validClientConfig,
    			SideEffects:  &noSideEffect,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    	{obj.ANOP, C_VREG, C_NONE, C_NONE, C_NONE, C_NONE, 0, 0, 0, 0, 0},
    	{obj.ADUFFZERO, C_NONE, C_NONE, C_NONE, C_SBRA, C_NONE, 5, 4, 0, 0, 0},   // same as AB/ABL
    	{obj.ADUFFCOPY, C_NONE, C_NONE, C_NONE, C_SBRA, C_NONE, 5, 4, 0, 0, 0},   // same as AB/ABL
    	{obj.APCALIGN, C_LCON, C_NONE, C_NONE, C_NONE, C_NONE, 0, 0, 0, 0, 0},    // align code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Sanity check
    	if newDS.UID == oldDS.UID {
    		t.Fatal("New DS has the same UID as the old one!")
    	}
    
    	waitForQueueLength(1, "recreated DS")
    	ok = dsc.processNextWorkItem(context.TODO())
    	if !ok {
    		t.Fatal("Queue is shutting down!")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    		hip.forceStart = true
    	}
    	if _, ok := qParams[mgmtForceStop]; ok {
    		hip.forceStop = true
    	}
    
    	// Invalid request conditions:
    	//
    	//   Cannot have both forceStart and forceStop in the same
    	//   request; If clientToken is provided, request can only be
    	//   to continue receiving logs, so it cannot be start or
    	//   stop;
    	if (hip.forceStart && hip.forceStop) ||
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top