Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for Uncommon (0.13 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. guava/src/com/google/common/cache/CacheBuilder.java

     * the License.
     */
    
    package com.google.common.cache;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Preconditions.checkState;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.base.Ascii;
    import com.google.common.base.Equivalence;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. 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)
  6. src/go/parser/parser.go

    				named++
    			}
    			if par.typ != nil {
    				typed++
    			}
    		}
    		if !p.atComma("parameter list", closing) {
    			break
    		}
    		p.next()
    	}
    
    	if len(list) == 0 {
    		return // not uncommon
    	}
    
    	// distribute parameter types (len(list) > 0)
    	if named == 0 {
    		// all unnamed => found names are type names
    		for i := 0; i < len(list); i++ {
    			par := &list[i]
    			if typ := par.name; typ != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                singleStep('common.jar', 'common2.jar'), // Requested behavior: transforming common includes common2 as a dependency
                singleStep('common2.jar', 'common.jar'), // Requested behavior: transforming common2 includes common as a dependency
                singleStep('lib.jar','slf4j-api-1.7.25.jar', 'common.jar', 'common2.jar'),
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            //however due to the conflict resolution, org.utils:api:1.5 and org.utils.impl:1.3 are resolved.
    
            buildFile << """
                $common
    
                dependencies {
                    conf 'org.stuff:foo:2.0', 'org.utils:impl:1.3', 'org.utils:optional-lib:5.0'
                }
    
                configurations.conf.resolutionStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
Back to top