Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 640 for IsSame (0.07 sec)

  1. src/runtime/mspanset.go

    	b.spineLen.Store(0)
    }
    
    // atomicSpanSetSpinePointer is an atomically-accessed spanSetSpinePointer.
    //
    // It has the same semantics as atomic.UnsafePointer.
    type atomicSpanSetSpinePointer struct {
    	a atomic.UnsafePointer
    }
    
    // Loads the spanSetSpinePointer and returns it.
    //
    // It has the same semantics as atomic.UnsafePointer.
    func (s *atomicSpanSetSpinePointer) Load() spanSetSpinePointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/allocator_test.go

    		}
    		found.Insert(port)
    	}
    
    	em = testMetrics{
    		free:      2768 - 2,
    		used:      2,
    		allocated: 2,
    		errors:    0,
    	}
    	expectMetrics(t, em)
    
    	// try to allocate the same ports
    	for s := range found {
    		if !a.Has(s) {
    			t.Fatalf("missing: %d", s)
    		}
    		if err := a.Allocate(s); err != ErrAllocated {
    			t.Fatal(err)
    		}
    	}
    	em = testMetrics{
    		free:      2768 - 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais.go

    	lastPos := int32(0)
    	for _, j := range sa[len(sa)-numLMS:] {
    		// Is the LMS-substring at index j new, or is it the same as the last one we saw?
    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint32(n) >= uint32(len(text)) {
    			// “Length” is really encoded full text, and they match.
    			goto Same
    		}
    		{
    			// Compare actual texts.
    			n := int(n)
    			this := text[j:][:n]
    			last := text[lastPos:][:n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Range.java

      /**
       * Returns {@code true} if {@code object} is a range having the same endpoints and bound types as
       * this range. Note that discrete ranges such as {@code (1..4)} and {@code [2..3]} are <b>not</b>
       * equal to one another, despite the fact that they each contain precisely the same set of values.
       * Similarly, empty ranges are not equal unless they have exactly the same representation, so
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/runtime/proc_test.go

    	// done too. See #45867.
    	runtime.GC()
    	for try := 0; try < N; try++ {
    		done := make(chan bool)
    		x := uint32(0)
    		for p := 0; p < P; p++ {
    			// Test that all P goroutines are scheduled at the same time
    			go func(p int) {
    				for i := 0; i < 3; i++ {
    					expected := uint32(P*i + p)
    					for atomic.LoadUint32(&x) != expected {
    					}
    					atomic.StoreUint32(&x, expected+1)
    				}
    				done <- true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    //   3. In the traversal order defined above, the format (dense vs. sparse) and
    //      index metadata for each dimension. For a dense dimension, this is just
    //      the size of that dimension. For a sparse dimension, it's the same as
    //      the compressed index defined in the Compressed Sparse Row (CSR) format.
    //      (http://scipy-lectures.org/advanced/scipy_sparse/csr_matrix.html)
    
    // The storage type for a dimension. Currently we support:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/Types.java

       * that an abstract method is unimplemented. So instead we use a dynamic proxy to get an
       * implementation. If the method being called on the {@code TypeVariable} instance has the same
       * name as one of the public methods of {@link TypeVariableImpl}, the proxy calls the same method
       * on its instance of {@code TypeVariableImpl}. Otherwise it throws {@link
       * UnsupportedOperationException}; this should only apply to {@code getAnnotatedBounds()}. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/index/suffixarray/suffixarray_test.go

    	}
    
    	// if n >= 0 the number of results is limited --- unless n >= all results,
    	// we may obtain different positions from the Index and from find (because
    	// Index may not find the results in the same order as find) => in general
    	// we cannot simply check that the res and exp lists are equal
    
    	// check that each result is in fact a correct match and there are no duplicates
    	slices.Sort(res)
    	for i, r := range res {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
      // domain-prefixed path no more than 250 characters in length, e.g.
      // "acme.io/ingress-controller". This field is immutable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

            }
    
            return methodKey.toString();
        }
    
        /**
         * Retrieves public methods for a class. In case the class is not
         * public, retrieves methods with same signature as its public methods
         * from public superclasses and interfaces (if they exist). Basically
         * upcasts every method to the nearest acccessible method.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top