Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,144 for Allows (0.11 sec)

  1. src/sync/once.go

    type Once struct {
    	// done indicates whether the action has been performed.
    	// It is first in the struct because it is used in the hot path.
    	// The hot path is inlined at every call site.
    	// Placing done first allows more compact instructions on some architectures (amd64/386),
    	// and fewer instructions (to calculate offset) on other architectures.
    	done atomic.Uint32
    	m    Mutex
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/BUILD

    # `pywrap_tensorflow_to_stablehlo` directly depend on sub-libraries like `static_range_srq` and instead haiving
    # a consolidated impl library `pywrap_tensorflow_to_stablehlo_lib_impl` allows the maintainers to avoid
    # declaring multiple impl libraries to `libtensorflow_cc` and `lib_pywrap_tensorflow_internal`,
    # which is required to avoid ODR violations.
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

        }
    
        /**
         * Providing a scope makes the resulting {@link ServiceRegistry}
         * validate all registered services for being annotated with the given scope.
         * <p>
         * However, this still allows to register services without the
         * {@link org.gradle.internal.service.scopes.ServiceScope @ServiceScope} annotation.
         *
         * @see #scopeStrictly(Class)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/tasks/UpdateDaemonJvmModifier.java

            // TODO: It would be nice to enforce this as part of task configuration instead of at runtime.
            // TODO: Need to consider how to handle future versions of Java that are not yet known. This currently allows any version of Java above the minimum.
            JavaVersion minimumSupportedVersion = JavaVersion.VERSION_1_8;
            if (version.compareTo(minimumSupportedVersion) < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. hack/verify-file-sizes.sh

    )
    
    
    # Files larger than 1MB get reported and verification fails, unless the file is
    # allowed to be larger. Any output or a non-zero exit status indicate a
    # failure.
    largefiles () {
        # --eol adds information that allows detecting binary files:
        #    i/-text w/-text attr/text=auto eol=lf 	test/images/sample-device-plugin/sampledeviceplugin
        #
        # shellcheck disable=SC2034 # Some variables unused and only present to capture the output field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. .github/workflows/scorecard.yml

              # repo_token: ${{ secrets.SCORECARD_TOKEN }}
    
              # Public repositories:
              #   - Publish results to OpenSSF REST API for easy access by consumers
              #   - Allows the repository to include the Scorecard badge.
              #   - See https://github.com/ossf/scorecard-action#publishing-results.
              # For private repositories:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/internal/poll/sendfile_windows.go

    		return 0, syscall.ESPIPE
    	}
    
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    
    	o := &fd.wop
    	o.handle = src
    
    	// TODO(brainman): skip calling syscall.Seek if OS allows it
    	curpos, err := syscall.Seek(o.handle, 0, io.SeekCurrent)
    	if err != nil {
    		return 0, err
    	}
    
    	if n <= 0 { // We don't know the size of the file so infer it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    5. <<extensiblepolymorphicdomainobjectcontainer,`ExtensiblePolymorphicDomainObjectContainer<T>`>>: An extension of `NamedDomainObjectContainer` that allows you to define instantiation strategies for different types of objects. This is useful when you have a container that can hold multiple types of objects, and you want to control how each type of object is instantiated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    				return nil, err
    			}
    			ss.AdditionalProperties = &StructuralOrBool{Structural: additionalPropertiesSchema, Bool: true}
    		} else {
    			ss.AdditionalProperties = &StructuralOrBool{Bool: s.AdditionalProperties.Allows}
    		}
    	}
    
    	return ss, nil
    }
    
    func newGenerics(s *apiextensions.JSONSchemaProps) (*Generic, error) {
    	if s == nil {
    		return nil, nil
    	}
    	g := &Generic{
    		Type:        s.Type,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. docs/ftp/README.md

    # MinIO FTP/SFTP Server
    
    MinIO natively supports FTP/SFTP protocol, this allows any ftp/sftp client to upload and download files.
    
    Currently supported `FTP/SFTP` operations are as follows:
    
    | ftp-client commands | supported |
    |:-------------------:|:----------|
    | get                 | yes       |
    | put                 | yes       |
    | ls                  | yes       |
    | mkdir               | yes       |
    | rmdir               | yes       |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top