Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for uncommon (0.18 sec)

  1. src/reflect/type.go

    // Embed this type to get common/uncommon
    type common struct {
    	abi.Type
    }
    
    // rtype is the common implementation of most values.
    // It is embedded in other struct types.
    type rtype struct {
    	t abi.Type
    }
    
    func (t *rtype) common() *abi.Type {
    	return &t.t
    }
    
    func (t *rtype) uncommon() *abi.UncommonType {
    	return t.t.Uncommon()
    }
    
    type aNameOff = abi.NameOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "Asia-maps.png/", "", "/", 1000, resultCases[34], nil, true},
    		// Test listing an object with uncommon delimiter
    		{testBuckets[4], "", "", "guidSplunk", 1000, resultCases[35], nil, true},
    		// Test listing an object with uncommon delimiter and matching prefix
    		{testBuckets[4], "file1/", "", "guidSplunk", 1000, resultCases[35], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    		// pick an arbitrary but consistent ordering based on name and namespace, which is unique.
    		// CreationTimestamp is stored in seconds, so this is not uncommon.
    		an := a.Attributes.Name + "." + a.Attributes.Namespace
    		bn := b.Attributes.Name + "." + b.Attributes.Namespace
    		return cmp.Compare(an, bn)
    	})
    	return services
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    		// might be able to change the goroutine count without interacting with
    		// the scheduler. For code like that, the race windows are small and the
    		// combination of features is uncommon, so it's hard to be (and remain)
    		// sure we've caught them all.
    	}
    
    	semrelease(&goroutineProfile.sema)
    	return n, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	defer c.mutex.RUnlock()
    	if c.SessionTicketsDisabled {
    		return nil
    	}
    	c.initLegacySessionTicketKeyRLocked()
    	if len(c.sessionTicketKeys) != 0 {
    		return c.sessionTicketKeys
    	}
    	// Fast path for the common case where the key is fresh enough.
    	if len(c.autoSessionTicketKeys) > 0 && c.time().Sub(c.autoSessionTicketKeys[0].created) < ticketKeyRotation {
    		return c.autoSessionTicketKeys
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/BUILD

            "//tensorflow/compiler/mlir/lite/stablehlo:tfl_legalize_hlo",
            "//tensorflow/compiler/mlir/quantization/common/ir:QuantOps",
            "//tensorflow/compiler/mlir/quantization/common/quantization_lib",
            "//tensorflow/compiler/mlir/quantization/common/quantization_lib:quantization_config",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:convert_tensor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

    import com.google.common.collect.ImmutableList;
    import com.google.common.reflect.Reflection;
    import com.google.common.truth.FailureStrategy;
    import com.google.common.truth.StandardSubjectBuilder;
    import com.google.common.util.concurrent.ClosingFuture.AsyncClosingCallable;
    import com.google.common.util.concurrent.ClosingFuture.AsyncClosingFunction;
    import com.google.common.util.concurrent.ClosingFuture.ClosingCallable;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/SetsTest.java

    import com.google.common.annotations.J2ktIncompatible;
    import com.google.common.base.Predicate;
    import com.google.common.collect.testing.AnEnum;
    import com.google.common.collect.testing.IteratorTester;
    import com.google.common.collect.testing.MinimalIterable;
    import com.google.common.collect.testing.NavigableSetTestSuiteBuilder;
    import com.google.common.collect.testing.SafeTreeSet;
    import com.google.common.collect.testing.SetTestSuiteBuilder;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

    import com.google.common.collect.ImmutableList;
    import com.google.common.reflect.Reflection;
    import com.google.common.truth.FailureStrategy;
    import com.google.common.truth.StandardSubjectBuilder;
    import com.google.common.util.concurrent.ClosingFuture.AsyncClosingCallable;
    import com.google.common.util.concurrent.ClosingFuture.AsyncClosingFunction;
    import com.google.common.util.concurrent.ClosingFuture.ClosingCallable;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  10. src/testing/testing.go

    }
    
    // The maximum number of stack frames to go through when skipping helper functions for
    // the purpose of decorating log messages.
    const maxStackLen = 50
    
    // common holds the elements common between T and B and
    // captures common methods such as Errorf.
    type common struct {
    	mu          sync.RWMutex         // guards this group of fields
    	output      []byte               // Output generated by test or benchmark.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top