Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,533 for isStandard (0.14 sec)

  1. src/internal/goroot/gc.go

    			lastDirs = append(lastDirs, dir)
    		}
    	}
    	gd.dirs = append(gd.dirs, lastDirs...)
    }
    
    // isStandard reports whether path is a standard library for gccgo.
    func (gd *gccgoDirs) isStandard(path string) bool {
    	// Quick check: if the first path component has a '.', it's not
    	// in the standard library. This skips most GOPATH directories.
    	i := strings.Index(path, "/")
    	if i < 0 {
    		i = len(path)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    #
    # Gateway API Standard channel install
    #
    ---
    #
    # config/crd/standard/gateway.networking.k8s.io_gatewayclasses.yaml
    #
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

                result.groupedOutput.task(':log').output == "Standard out 1\nStandard err 1\nStandard out 2\nStandard err 2"
            } else {
                result.groupedOutput.task(':log').output == "Standard out 1\nStandard out 2\n"
                result.assertHasErrorOutput("Standard err 1\nStandard err 2")
            }
        }
    
        def "grouped output is displayed for failed tasks"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.standard-tool-chains.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 99 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    But it might be useful to understand the _standard attributes_ defined by Gradle and its core plugins.
    
    As a plugin author, these attributes, and the way they are defined, can serve as a basis for <<#sec:declaring_attributes,building your own set of attributes>> in your ecosystem plugin.
    
    [[sec:standard_attributes]]
    == Standard attributes defined by Gradle
    
    Gradle defines a list of standard attributes used by Gradle's core plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/time/zoneinfo_abbrs_windows.go

    	"SA Eastern Standard Time":        {"-03", "-03"},     // America/Cayenne
    	"Central Standard Time":           {"CST", "CDT"},     // America/Chicago
    	"Central Brazilian Standard Time": {"-04", "-04"},     // America/Cuiaba
    	"Mountain Standard Time":          {"MST", "MDT"},     // America/Denver
    	"Greenland Standard Time":         {"-03", "-02"},     // America/Godthab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 11 01:26:55 UTC 2022
    - 39.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/BaseExecSpec.java

        /**
         * Sets the standard input stream for the process executing the command. The stream is closed after the process
         * completes.
         *
         * @param inputStream The standard input stream for the process. Must not be null.
         * @return this
         */
        BaseExecSpec setStandardInput(InputStream inputStream);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. internal/config/storageclass/storage-class.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/env"
    )
    
    // Standard constants for all storage class
    const (
    	// Reduced redundancy storage class
    	RRS = "REDUCED_REDUNDANCY"
    	// Standard storage class
    	STANDARD = "STANDARD"
    )
    
    // Standard constats for config info storage class
    const (
    	ClassStandard = "standard"
    	ClassRRS      = "rrs"
    	Optimize      = "optimize"
    	InlineBlock   = "inline_block"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. docs/erasure/storage-class/README.md

    ### Allowed values for STANDARD storage class
    
    `STANDARD` storage class implies more parity than `REDUCED_REDUNDANCY` class. So, `STANDARD` parity drives should be
    
    - Greater than or equal to 2, if `REDUCED_REDUNDANCY` parity is not set.
    - Greater than `REDUCED_REDUNDANCY` parity, if it is set.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top