Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 931 for Everything (0.23 sec)

  1. src/cmd/go/testdata/script/mod_tidy.txt

    env GO111MODULE=on
    
    # tidy removes unused y, but everything else is used
    go mod tidy -v
    stderr '^unused y.1'
    ! stderr '^unused [^y]'
    
    grep 'go 1.10' go.mod
    
    go list -m all
    ! stdout '^y'
    stdout '^w.1 v1.2.0'
    stdout '^z.1 v1.2.0'
    
    # empty tidy should not crash
    cd triv
    ! grep 'go ' go.mod
    go mod tidy
    
    # tidy should add missing go line
    grep 'go ' go.mod
    
    -- go.mod --
    module m
    
    go 1.10
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 06 15:08:19 UTC 2019
    - 897 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    include::sample[dir="snippets/base/basePlugin/groovy",files="build.gradle[tags=apply-base-plugin]"]
    ====
    
    [[sec:base_tasks]]
    == Task
    
    `clean` — `Delete`::
    Deletes the build directory and everything in it, i.e. the path specified by the link:{groovyDslPath}/org.gradle.api.file.ProjectLayout.html#org.gradle.api.file.ProjectLayout:buildDirectory[layout.buildDirectory] project property.
    
    `check` — _lifecycle task_::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/cors.md

    It's also possible to declare the list as `"*"` (a "wildcard") to say that all are allowed.
    
    But that will only allow certain types of communication, excluding everything that involves credentials: Cookies, Authorization headers like those used with Bearer Tokens, etc.
    
    So, for everything to work correctly, it's better to specify explicitly the allowed origins.
    
    ## Use `CORSMiddleware`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 20:28:37 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/GeneralRange.java

      static <T extends @Nullable Object> GeneralRange<T> all(Comparator<? super T> comparator) {
        return new GeneralRange<>(comparator, false, null, OPEN, false, null, OPEN);
      }
    
      /**
       * Returns everything above the endpoint relative to the specified comparator, with the specified
       * endpoint behavior.
       */
      static <T extends @Nullable Object> GeneralRange<T> downTo(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/ListToArrayTester.java

     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class ListToArrayTester<E> extends AbstractListTester<E> {
      // CollectionToArrayTester tests everything except ordering.
    
      public void testToArray_noArg() {
        Object[] actual = getList().toArray();
        assertArrayEquals("toArray() order should match list", createOrderedArray(), actual);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/https.md

    You would probably do this just once, the first time, when setting everything up.
    
    !!! tip
        This Domain Name part is way before HTTPS, but as everything depends on the domain and the IP address, it's worth mentioning it here.
    
    ### DNS
    
    Now let's focus on all the actual HTTPS parts.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/vet/README

    by the programmer overwhelmed by the output; a check that misses too many of the
    cases it's looking for will give a false sense of security. Neither is acceptable.
    A vet check must be accurate enough that everything it reports is worth examining,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/cidr_allocator.go

    		var err error
    		nodeList, err = kubeClient.CoreV1().Nodes().List(ctx, metav1.ListOptions{
    			FieldSelector: fields.Everything().String(),
    			LabelSelector: labels.Everything().String(),
    		})
    		if err != nil {
    			logger.Error(err, "Failed to list all nodes")
    			return false, nil
    		}
    		return true, nil
    	}); pollErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/MultiRequestWorkerProcessBuilder.java

         */
        <T> void registerArgumentSerializer(Class<T> type, Serializer<T> serializer);
    
        /**
         * Use a simpler classloader structure where everything is in the application classloader.
         */
        void useApplicationClassloaderOnly();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/typeconverter.go

    type TypeConverter = internal.TypeConverter
    
    // NewDeducedTypeConverter creates a TypeConverter for CRDs that don't
    // have a schema. It does implement the same interface though (and
    // create the same types of objects), so that everything can still work
    // the same. CRDs are merged with all their fields being "atomic" (lists
    // included).
    func NewDeducedTypeConverter() TypeConverter {
    	return internal.NewDeducedTypeConverter()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top