Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,538 for excluded (0.23 sec)

  1. src/cmd/compile/internal/types2/stdlib_test.go

    				t.Skipf("skipping: GOROOT/test not present")
    			}
    		}
    		t.Fatal(err)
    	}
    
    	excluded := make(map[string]bool)
    	for _, filename := range ignore {
    		excluded[filename] = true
    	}
    
    	for _, f := range files {
    		// filter directory contents
    		if f.IsDir() || !strings.HasSuffix(f.Name(), ".go") || excluded[f.Name()] {
    			continue
    		}
    
    		// get per-file instructions
    		expectErrors := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. test/abi/leaf.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import "fmt"
    
    type i5f5 struct {
    	a, b          int16
    	c, d, e       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 641 bytes
    - Viewed (0)
  3. src/main/resources/fess_label.properties

    labels.createdTime=Created Time
    labels.depth=Depth
    labels.excludedPaths=Excluded Paths For Crawling
    labels.excludedUrls=Excluded URLs For Crawling
    labels.excludedDocPaths=Excluded Paths For Indexing
    labels.excludedDocUrls=Excluded URLs For Indexing
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Included Paths For Crawling
    labels.includedUrls=Included URLs For Crawling
    labels.includedDocPaths=Included Paths For Indexing
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                        if (logger.isInfoEnabled()) {
                            logger.info("Included URL: {}", urlValue);
                        }
                    } else if (line.startsWith(DISABLE_URL_ENCODE)) {
                        urlEncodeDisabled.set(true);
                    }
                }));
    
                // set excluded urls
                urlEncodeDisabled.set(false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

     *
     * @param group the optional group identifying the dependencies to be excluded.
     * @param module the optional module name identifying the dependencies to be excluded.
     * @return this
     *
     * @see [ModuleDependency.exclude]
     */
    fun <T : ModuleDependency> T.exclude(group: String? = null, module: String? = null): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. pilot/pkg/xds/xds_test.go

    {{- end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: excluded
      namespace: excluded
    spec:
      hosts:
      - app.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
      endpoints:
    {{- if eq .Resolution "DNS" }}
      - address: excluded.com
    {{- else }}
      - address: 9.9.9.9
    {{- end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. hack/make-rules/verify.sh

      "verify-openapi-docs-urls.sh"  # Spams docs URLs, don't run in CI.
      )
    
    # Exclude typecheck in certain cases, if they're running in a separate job.
    if [[ ${EXCLUDE_TYPECHECK:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
        "verify-typecheck.sh"              # runs in separate typecheck job
        )
    fi
    
    # Exclude dependency checks in certain cases, if they're running in a separate job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultExcludeEverything.java

        }
    
        private DefaultExcludeEverything() {
        }
    
        @Override
        public boolean excludes(ModuleIdentifier module) {
            return true;
        }
    
        @Override
        public boolean excludesArtifact(ModuleIdentifier module, IvyArtifactName artifactName) {
            // everything excluded **only** applies to modules, not artifacts!
            return false;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.example.com"},
    		},
    		expectedError: "\"foo.example.com\" is excluded",
    	},
    
    	// #16: intermediates can also exclude names and that doesn't affect
    	// other names.
    	{
    		roots: make([]constraintsSpec, 1),
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					bad: []string{"dns:.example.com"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. test/abi/leaf2.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import "fmt"
    
    type i4 struct {
    	a, b, c, d int
    }
    
    //go:registerparams
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 768 bytes
    - Viewed (0)
Back to top