Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for marking (0.15 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    #ifdef _MSC_VER
    # pragma warning(push)          // Saves the current warning state.
    # pragma warning(disable:4389)  // Temporarily disables warning on
                                    // signed/unsigned mismatch.
    #endif
    
      if (expected == actual) {
        return AssertionSuccess();
      }
    
    #ifdef _MSC_VER
    # pragma warning(pop)          // Restores the warning state.
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// Inverting the bytes increases the chance that a
    	// 4-byte encoding will still be ≥ len(text).
    	// In particular, if the first byte is ASCII (<= 0x7E, so +1 <= 0x7F)
    	// then the high bit of the inversion will be set,
    	// making it clearly not a valid length (it would be a negative one).
    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint64(0) // byte-only
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    				// function in the delete strategy called in the delete method.  While that is always ugly, it works
    				// when making a single call.  When making multiple calls via delete collection, the mutation applied to
    				// pod/A can change the option ultimately used for pod/B.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    #ifdef _MSC_VER
    # pragma warning(push)          // Saves the current warning state.
    # pragma warning(disable:4389)  // Temporarily disables warning on
                                    // signed/unsigned mismatch.
    #endif
    
      if (expected == actual) {
        return AssertionSuccess();
      }
    
    #ifdef _MSC_VER
    # pragma warning(pop)          // Restores the warning state.
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputDoesNotContain('Providing metadata for group:projectA:1.1')
    
            and: "remote status file parsed only once"
            outputContains 'Parsing status file call count: 1'
            outputDoesNotContain('Parsing status file call count: 2')
    
            when: "resolving the same dependencies"
            server.expectHead("/repo/status.txt", statusFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	}
    	span.AddEvent("Listed items from cache", attribute.Int("count", len(objs)))
    	// store pointer of eligible objects,
    	// Why not directly put object in the items of listObj?
    	//   the elements in ListObject are Struct type, making slice will bring excessive memory consumption.
    	//   so we try to delay this action as much as possible
    	var selectedObjects []runtime.Object
    	for _, obj := range objs {
    		elem, ok := obj.(*storeElement)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Don't go with running `build` right away.
    You can also use `--dry-run` to discover more configuration time problems first.
    +
    When working on a build, progressively target your development feedback loop.
    For example, running tests after making some changes to the source code.
    +
    When working on a plugin, progressively target the contributed or configured tasks.
    
    Explore by turning problems into warnings::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	// Request.Host field and removed from the Header map.
    	//
    	// HTTP defines that header names are case-insensitive. The
    	// request parser implements this by using CanonicalHeaderKey,
    	// making the first character and any characters following a
    	// hyphen uppercase and the rest lowercase.
    	//
    	// For client requests, certain headers such as Content-Length
    	// and Connection are automatically written when needed and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    	cleanup(t, m, p)
    }
    
    // Tests that the device plugin manager correctly handles registration and re-registration by
    // making sure that after registration, devices are correctly updated and if a re-registration
    // happens, we will NOT delete devices; and no orphaned devices left.
    func TestDevicePluginReRegistration(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        }
    
        /*
         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
         * * Rescheduling any deferred selection impacted by a constraint coming from this node
         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
        private void cleanupConstraints() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top