Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 589 for Concept (0.23 sec)

  1. cmd/globals.go

    	// This is a sha256 output of ``arn:aws:iam::minio:user/admin``,
    	// this is kept in present form to be compatible with S3 owner ID
    	// requirements -
    	//
    	// ```
    	//    The canonical user ID is the Amazon S3–only concept.
    	//    It is 64-character obfuscated version of the account ID.
    	// ```
    	// http://docs.aws.amazon.com/AmazonS3/latest/dev/example-walkthroughs-managing-access-example4.html
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

      <artifactId>maven-parent</artifactId>
      <version>5</version>
      <packaging>pom</packaging>
      <name>Apache Maven</name>
      <description>
        Maven is a software project management and comprehension tool. Based on the concept of a project object model
        (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
      </description>
      <url>http://maven.apache.org/</url>
      <issueManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 14.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    To help explain this concept, consider the last example from the previous section:
    
    [source,groovy]
    copy {
        into layout.buildDirectory.dir("tmp")
        from 'custom-resources'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

        override fun afterEvaluate(closure: Closure<*>) =
            delegate.afterEvaluate(closure)
    
        override fun getDefaultTasks(): MutableList<String> =
            delegate.defaultTasks
    
        @Deprecated("The concept of conventions is deprecated. Use extensions instead.")
        override fun getConvention(): @Suppress("deprecation") org.gradle.api.plugins.Convention =
            @Suppress("deprecation")
            delegate.convention
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/aggregator.go

    	// is to refactor the genericapiserver.DelegationTarget to include a list of priorities based on which APIs were installed.
    	// This requires the APIGroupInfo struct to evolve and include the concept of priorities and to avoid mistakes, the core storage map there needs to be updated.
    	// That ripples out every bit as far as you'd expect, so for 1.7 we'll include the list here instead of being built up during storage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

      def get_min_max_value(self) -> tuple[float, float]:
        """Calculates min and max from statistics using calibration options.
    
        A "percentile" is a statistical concept that represents the value below
        which a given percentage of data falls in a dataset. It involves sorting the
        data from smallest to largest and then finding the value at a specified
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    		return nil, fmt.Errorf("package has no files: %s", cfg.ImportPath)
    	}
    	return cfg, nil
    }
    
    type factImporter = func(pkgPath string) ([]byte, error)
    
    // These four hook variables are a proof of concept of a future
    // parameterization of a unitchecker API that allows the client to
    // determine how and where facts and types are produced and consumed.
    // (Note that the eventual API will likely be quite different.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/net/http/roundtrip_js.go

    			// Assumes it's a TypeError. See
    			// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError
    			// for more information on this type.
    			// See https://fetch.spec.whatwg.org/#concept-body-consume-body for reasons this might error.
    			errCh <- errors.New(args[0].Get("message").String())
    			return nil
    		})
    		defer failure.Release()
    		r.arrayPromise.Call("then", success, failure)
    		select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/offline-mode.apt

      using file:// or not residing on a local (not shared) filesystem will
      be unavailable.
    
    
    * Implications for Mojo Execution
    
    ** Deployment mojos
    
      The concept of deployment is dependent on the availability of a some
      remote repository. Just as above, if that repository is not using
      file:// (which is highly likely to be the case), or the repository is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/os/user/lookup_windows.go

    	if err != nil {
    		return nil, err
    	}
    	// Add the primary group of the user to the list if it is not already there.
    	// This is done only to comply with the POSIX concept of a primary group.
    	for _, sid := range sids {
    		if sid == user.Gid {
    			return sids, nil
    		}
    	}
    	return append(sids, user.Gid), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top