Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 611 for existed (0.14 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

         GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } else \
        ::testing::Message()
    
    // A class representing the parsed contents of the
    // --gtest_internal_run_death_test flag, as it existed when
    // RUN_ALL_TESTS was called.
    class InternalRunDeathTestFlag {
     public:
      InternalRunDeathTestFlag(const std::string& a_file,
                               int a_line,
                               int an_index,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            when:
            boolean didWork = deleter.ensureEmptyDirectory(file)
    
            then:
            file.assertIsDir()
            didWork
        }
    
        def "creates directory if nothing existed before"() {
            given:
            TestFile dir = tmpDir.getTestDirectory()
            def file = dir.file("someFile")
    
            when:
            boolean didWork = deleter.ensureEmptyDirectory(file)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    		mcsService = ic.genMCSService(realService, mcsHost, ips)
    	} else {
    		if event == model.EventDelete || len(ips) == 0 {
    			ic.deleteService(mcsService)
    			return nil
    		}
    
    		// The service already existed. Treat it as an update.
    		event = model.EventUpdate
    		mcsService = mcsService.DeepCopy()
    		if ic.updateIPs(mcsService, ips) {
    			needsFullPush = true
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/crypto/x509/cert_pool.go

    	// where a failure is likely; the func is meant to lazily
    	// parse/decompress data that is already known to be good. The
    	// error in the signature primarily is meant for use in the
    	// case where a cert file existed on local disk when the program
    	// started up is deleted later before it's read.
    	getCert func() (*Certificate, error)
    }
    
    // NewCertPool returns a new, empty CertPool.
    func NewCertPool() *CertPool {
    	return &CertPool{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

         GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } else \
        ::testing::Message()
    
    // A class representing the parsed contents of the
    // --gtest_internal_run_death_test flag, as it existed when
    // RUN_ALL_TESTS was called.
    class InternalRunDeathTestFlag {
     public:
      InternalRunDeathTestFlag(const std::string& a_file,
                               int a_line,
                               int an_index,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    				h64 = r.Hash64(li - uint32(r.ndef))
    				s, existed := st.hashed64Syms[h64]
    				return s, existed
    			}
    			addToHashMap = func(ss symAndSize) { st.hashed64Syms[h64] = ss }
    		} else {
    			checkHash = func() (symAndSize, bool) {
    				h = r.Hash(li - uint32(r.ndef+r.nhashed64def))
    				s, existed := st.hashedSyms[*h]
    				return s, existed
    			}
    			addToHashMap = func(ss symAndSize) { st.hashedSyms[*h] = ss }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. pkg/util/iptables/iptables.go

    type Interface interface {
    	// EnsureChain checks if the specified chain exists and, if not, creates it.  If the chain existed, return true.
    	EnsureChain(table Table, chain Chain) (bool, error)
    	// FlushChain clears the specified chain.  If the chain did not exist, return error.
    	FlushChain(table Table, chain Chain) error
    	// DeleteChain deletes the specified chain.  If the chain did not exist, return error.
    	DeleteChain(table Table, chain Chain) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/provision_test.go

    				// Create a volume before syncClaim tries to bind a PV to PVC
    				// This simulates external provisioner creating a volume while the controller
    				// is waiting for a volume to bind to the existed claim
    				// the external provisioner workflow implemented in "provisionClaimOperationCSI"
    				// should issue an ExternalProvisioning event to signal that some external provisioner
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    			t.Errorf("Expected %v got %v", wantTag, labels.Instance(pod[0].Labels))
    		}
    	}
    
    	// This pod exists, but should not be in the cache because it is in a
    	// namespace not watched by the controller.
    	assert.Equal(t, c.pods.getPodsByIP("128.0.0.4"), nil)
    
    	// This pod should not be in the cache because it never existed.
    	assert.Equal(t, c.pods.getPodsByIP("128.0.0.128"), nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/compute.go

    	canDoMinorUpgrade := clusterVersion.LessThan(stableVersion)
    
    	// A patch version doesn't exist if the cluster version is higher than or equal to the current stable version
    	// in the case that a user is trying to upgrade from, let's say, v1.8.0-beta.2 to v1.8.0-rc.1 (given we support such upgrades experimentally)
    	// a stable-1.8 branch doesn't exist yet. Hence this check.
    	if patchVersionBranchExists(clusterVersion, stableVersion) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top