Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 9,318 for haxe (0.2 sec)

  1. src/go/doc/comment/testdata/text8.txt

    If the arguments don't have version suffixes, "go install" may run in
    module-aware mode or GOPATH mode, depending on the GO111MODULE environment
    variable and the presence of a go.mod file. See 'go help modules' for details.
    If module-aware mode is enabled, "go install" runs in the context of the main
    module.
    -- text --
    If the arguments have version suffixes
    (like @latest or @v1.0.0), "go install"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. pkg/cache/cache.go

    	Misses uint64
    
    	// Evictions captures the number of entries that have been evicted from the cache
    	Evictions uint64
    
    	// Removals captures the number of entries that have been explicitly removed from the
    	// cache
    	Removals uint64
    }
    
    // Cache defines the standard behavior of in-memory thread-safe caches.
    //
    // Different caches can have different eviction policies which determine
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    // ClusterTrustBundles by default.  Users who only have namespace-level access
    // to a cluster can read ClusterTrustBundles by impersonating a serviceaccount
    // that they have access to.
    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

        /**
         * Returns the URI for this resource. Not all resources have a URI.
         * Note that the URI returned by this method may not necessarily have the same contents as the resource. For example, the file may be compressed,
         * contain text encoded with a different encoding or represent a directory.
         *
         * @return The URI for this resource. Returns null if this resource does not have a URI.
         */
        @Nullable
        URI getURI();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

    import java.lang.reflect.Method;
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /**
     * Since annotations have some reusability issues that force copy and paste all over the place, it's
     * worth having a test to ensure that all our Feature enums have their annotations correctly set up.
     *
     * @author George van den Driessche
     */
    public class FeatureEnumTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  6. src/strconv/atoc.go

    		if err != nil {
    			return 0, err
    		}
    	}
    	s = s[n:]
    
    	// If we have nothing left, we're done.
    	if len(s) == 0 {
    		return complex(re, 0), pending
    	}
    
    	// Otherwise, look at the next character.
    	switch s[0] {
    	case '+':
    		// Consume the '+' to avoid an error if we have "+NaNi", but
    		// do this only if we don't have a "++" (don't hide that error).
    		if len(s) > 1 && s[1] != '+' {
    			s = s[1:]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. pkg/registry/networking/servicecidr/strategy_test.go

    	if Strategy.NamespaceScoped() {
    		t.Errorf("Expected ServiceCIDR to be cluster-scoped")
    	}
    
    	resetFields := Strategy.GetResetFields()
    	if len(resetFields) != 1 {
    		t.Errorf("ResetFields should have 1 element, but have %d", len(resetFields))
    	}
    	obj := &networking.ServiceCIDR{Spec: networking.ServiceCIDRSpec{CIDRs: []string{"bad cidr"}}}
    
    	errors := Strategy.Validate(context.TODO(), obj)
    	if len(errors) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 15:09:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/deployment/internal/Deployment.java

             */
            @Nullable
            Throwable getFailure();
    
            /**
             * Returns true if the deployment's runtime may have changed since the previous status was reported.
             * @return whether the deployment runtime may have changed.
             */
            boolean hasChanged();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    	kubeadm upgrade apply v1.18.4
    
    Note: Before you can perform this upgrade, you have to update kubeadm to v1.18.4.
    
    _____________________________________________________________________
    
    
    The table below shows the current state of component configs as understood by this version of kubeadm.
    Configs that have a "yes" mark in the "MANUAL UPGRADE REQUIRED" column require manual config upgrade or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		},
    		// the node1(node1) that have the label {"region": "China"} (match the topology key) and that have existing pods that match the labelSelector get high score
    		// the node2(node2) that have the label {"region": "China"}, match the topology key and have the same label value with node1, get the same high score with node1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
Back to top