Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,170 for _ignored (0.12 sec)

  1. src/cmd/go/testdata/script/mod_in_testdata_dir.txt

    # The same should work in directories with names starting with underscores.
    cd $WORK/_ignored
    go mod init testdata.tld/foo
    
    go get
    grep 'rsc.io/quote' go.mod
    
    go mod tidy
    grep 'rsc.io/quote' go.mod
    
    go mod vendor
    exists vendor/rsc.io/quote
    
    -- $WORK/testdata/main.go --
    package foo
    
    import _ "rsc.io/quote"
    -- $WORK/_ignored/main.go --
    package foo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 969 bytes
    - Viewed (0)
  2. src/cmd/doc/testdata/nested/ignore.go

    //go:build ignore
    // +build ignore
    
    // Ignored package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 70 bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithConstants.groovy

        public static final String STRING_CONST = 'some-string'
        static final Object OBJECT_CONST = new GroovyClassWithConstants()
        static final def BIG_DECIMAL_CONST = 1.02
    
        String ignored = 'ignore'
        final int ignored2 = 1001
        static def ignored3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 356 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/normalization/internal/DefaultRuntimeClasspathNormalizationTest.groovy

            !restoredNormalization.getPropertiesFileFilters()[PropertiesFileFilter.ALL_PROPERTIES].shouldBeIgnored("not.ignored")
            restoredNormalization.getPropertiesFileFilters()["some.properties"].shouldBeIgnored("ignored.in.some")
            !restoredNormalization.getPropertiesFileFilters()["some.properties"].shouldBeIgnored("not.ignored")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 22 13:17:59 UTC 2021
    - 7K bytes
    - Viewed (0)
  5. releasenotes/notes/ignore-port.yaml

    - |
      **Fixed** an issue causing traffic to match an unexpected route when using wildcard domain names and including an port in the `Host` header.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:11 UTC 2022
    - 581 bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithConstants.java

        static final char CHAR_CONST = 'a';
        static final int INT_CONST = 9;
        protected static final Object OBJECT_CONST = new JavaClassWithConstants();
    
        static String ignored = "ignore";
        String ignored2 = "ignore";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 353 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    				Int3:     3,
    				Ignored:  1,
    				Ignored2: "ignored",
    			},
    			expected: url.Values{"float1": {"23.5"}, "float2": {"100.7"}, "int1": {"1"}, "int2": {"2"}, "int3": {"3"}},
    		},
    		{
    			// include fields that are not tagged omitempty
    			input: &foo{
    				NamedStr: "named str",
    			},
    			expected: url.Values{"str": {""}, "namedStr": {"named str"}},
    		},
    		{
    			input: &baz{
    				Ptr:  intp(5),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/misannotated.yaml

          command: ['curl']
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: details
      labels:
        app: details
      annotations:
        # Annotation that Istio doesn't know about, but isn't an Istio annotation, thus ignored
        kubernetes.io/psp: my-privileged-psp
    spec:
      ports:
      - name: http
        port: 80
        targetPort: 9080
      selector:
        app: details
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-ignore.yaml

    John Howard <******@****.***> 1565919828 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 520 bytes
    - Viewed (0)
  10. src/go/build/testdata/non_source_tags/x_arm.go.ignore

    Ian Lance Taylor <******@****.***> 1667003038 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 19:48:43 UTC 2022
    - 184 bytes
    - Viewed (0)
Back to top