Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,772 for isStandard (0.18 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. src/cmd/dist/imports.go

    func resolveVendor(imp, srcDir string) string {
    	var first string
    	if i := strings.Index(imp, "/"); i < 0 {
    		first = imp
    	} else {
    		first = imp[:i]
    	}
    	isStandard := !strings.Contains(first, ".")
    	if isStandard {
    		return imp
    	}
    
    	if strings.HasPrefix(srcDir, filepath.Join(goroot, "src", "cmd")) {
    		return path.Join("cmd", "vendor", imp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 21:45:30 UTC 2019
    - 6.3K bytes
    - Viewed (0)
  3. 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)
  4. releasenotes/notes/standard-alpn.yaml

    John Howard <******@****.***> 1609359582 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 30 20:19:42 UTC 2020
    - 191 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

          },
          "reading_term_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "normalize_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "keyword",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  9. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

          },
          "reading_term_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "normalize_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "keyword",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  10. src/main/resources/suggest_indices/suggest_analyzer.json

          },
          "reading_term_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "normalize_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "keyword",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
Back to top