Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for importing (0.24 sec)

  1. src/cmd/go/internal/modload/init.go

    	ForceUseModules bool
    
    	allowMissingModuleImports bool
    
    	// ExplicitWriteGoMod prevents LoadPackages, ListModules, and other functions
    	// from updating go.mod and go.sum or reporting errors when updates are
    	// needed. A package should set this if it would cause go.mod to be written
    	// multiple times (for example, 'go get' calls LoadPackages multiple times) or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withProblem("Task `:broken` of type `org.gradle.api.DefaultTask`: invocation of 'Task.project' at execution time is unsupported.")
            }
        }
    
        def "stops reporting problems at certain limits"() {
            buildFile << """
                task all
            """
            for (i in 1..530) {
                buildFile << """
                    task broken$i { t ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

    	ctx, cancel := context.WithTimeout(context.Background(), testDefaultTimeout)
    	defer cancel()
    
    	dummyCloser := dummyCloser{bytes.NewReader(content)}
    	err := s.adm.ImportIAM(ctx, dummyCloser)
    	if err != nil {
    		c.Fatalf("Unable to import IAM: %v", err)
    	}
    
    	entRes, err := s.adm.GetLDAPPolicyEntities(ctx, madmin.PolicyEntitiesQuery{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    and Gradle internal implementation classes may suffer breaking changes (or be renamed or removed) from one version to another without warning.
    
    It is important for users to distinguish between the API and internal parts of the Gradle codebase.
    This is typically achieved by including `internal` in the implementation package names.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    					},
    				},
    				postfilter: result{
    					// Claims with immediate allocation don't. The allocation is considered
    					// more important than the pod and pods need to wait for the node to
    					// become available again.
    					status: framework.NewStatus(framework.Unschedulable, `still not schedulable`),
    				},
    			},
    		},
    		"good-topology": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. .bazelrc

    # errors.
    # There is ongoing work on Bazel team's side to provide support for transitive
    # shared libraries. As part of migrating to transitive shared libraries, we
    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    # TODO: Remove the following two lines once TF doesn't depend on Bazel wrapping
    # all library archives in -whole_archive -no_whole_archive.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    // Cacher implements storage.Interface (although most of the calls are just
    // delegated to the underlying storage).
    type Cacher struct {
    	// HighWaterMarks for performance debugging.
    	// Important: Since HighWaterMark is using sync/atomic, it has to be at the top of the struct due to a bug on 32-bit platforms
    	// See: https://golang.org/pkg/sync/atomic/ for more information
    	incomingHWM storage.HighWaterMark
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

    import java.util.stream.Collectors;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link NavigableMap} whose contents will never change, with many other important properties
     * detailed at {@link ImmutableCollection}.
     *
     * <p><b>Warning:</b> as with any sorted collection, you are strongly advised not to use a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    			if x.isNil() {
    				return Typ[UntypedNil], nil, 0
    			}
    			break
    		}
    		// Values must have concrete dynamic types. If the value is nil,
    		// keep it untyped (this is important for tools such as go vet which
    		// need the dynamic type for argument checking of say, print
    		// functions)
    		if x.isNil() {
    			return Typ[UntypedNil], nil, 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	// renegotiation extension. (This is meaningless as a server because
    	// renegotiation is not supported in that case.)
    	secureRenegotiation bool
    	// ekm is a closure for exporting keying material.
    	ekm func(label string, context []byte, length int) ([]byte, error)
    	// resumptionSecret is the resumption_master_secret for handling
    	// or sending NewSessionTicket messages.
    	resumptionSecret []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top