Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for SAME (0.07 sec)

  1. cmd/site-replication.go

    			return madmin.ReplicateAddStatus{}, errSRInvalidRequest(fmt.Errorf("all existing replicated sites must be specified - missing %s", strings.Join(diffSlc, " ")))
    		}
    	}
    
    	// validate that all clusters are using the same IDP settings.
    	err = c.validateIDPSettings(ctx, sites)
    	if err != nil {
    		return madmin.ReplicateAddStatus{}, err
    	}
    
    	// For this `add` API, either all clusters must be empty or the local
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    // during execution of the query.
    func TestTxContextWait(t *testing.T) {
    	testContextWait(t, false)
    }
    
    // TestTxContextWaitNoDiscard is the same as TestTxContextWait, but should not discard
    // the final connection.
    func TestTxContextWaitNoDiscard(t *testing.T) {
    	testContextWait(t, true)
    }
    
    func testContextWait(t *testing.T, keepConnOnRollback bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	contentType      string
    	connection       string
    	transferEncoding string
    	date             []byte // written if not nil
    	contentLength    []byte // written if not nil
    }
    
    // Sorted the same as extraHeader.Write's loop.
    var extraHeaderKeys = [][]byte{
    	[]byte("Content-Type"),
    	[]byte("Connection"),
    	[]byte("Transfer-Encoding"),
    }
    
    var (
    	headerContentLength = []byte("Content-Length: ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                // See https://github.com/gradle/gradle/issues/8244
                suffix = "_Decorated";
                // Because the same suffix is used for all decorating class generator instances, share the same cache as well
                if (GENERATED_CLASSES_CACHES.get() == null) {
                    if (GENERATED_CLASSES_CACHES.compareAndSet(null, cacheFactory.newClassMap())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        def "workspace id of project transforms is unique per build with included builds"() {
            // The setup here is in a way that the project path of the project dependency in the same build
            // is the same as the buildTreePath of the substituted project dependency in the included build.
            // This way we test that you can't do special handling for "local" project dependencies when calculating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/work/exec.go

    	// Configuration independent of compiler toolchain.
    	// Note: buildmode has already been accounted for in buildGcflags
    	// and should not be inserted explicitly. Most buildmodes use the
    	// same compiler settings and can reuse each other's results.
    	// If not, the reason is already recorded in buildGcflags.
    	fmt.Fprintf(h, "compile\n")
    
    	// Include information about the origin of the package that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. pkg/config/validation/validation_test.go

    				{
    					Hosts: []string{
    						"*/b.com",
    						"test/a.com",
    					},
    				},
    			},
    		}, true, false},
    		{"sidecar egress duplicated with wildcarded same namespace", &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{
    						"test/*",
    						"test/a.com",
    					},
    				},
    			},
    		}, true, true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    		return rCfg, err
    	}
    	return rCfg, nil
    }
    
    // validateReplicationDestination returns error if replication destination bucket missing or not configured
    // It also returns true if replication destination is same as this server.
    func validateReplicationDestination(ctx context.Context, bucket string, rCfg *replication.Config, checkRemote bool) (bool, APIError) {
    	var arns []string
    	if rCfg.RoleArn != "" {
    		arns = append(arns, rCfg.RoleArn)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top