Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,081 for excluded (0.11 sec)

  1. pkg/proxy/ipvs/netlink.go

    	// Only the addresses of the current family are returned.
    	// IPv6 link-local and loopback addresses are excluded.
    	GetAllLocalAddresses() (sets.Set[string], error)
    	// GetLocalAddresses return all local addresses for an interface.
    	// Only the addresses of the current family are returned.
    	// IPv6 link-local and loopback addresses are excluded.
    	GetLocalAddresses(dev string) (sets.Set[string], error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_import_mod.txt

    # Test that GOPATH/pkg/mod is excluded
    env GO111MODULE=off
    ! go list mod/foo
    stderr 'disallowed import path'
    
    -- mod/foo/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 01 00:35:26 UTC 2018
    - 143 bytes
    - Viewed (0)
  3. src/cmd/go/internal/mvs/mvs.go

    	var (
    		added    = make(map[module.Version]bool)
    		rdeps    = make(map[module.Version][]module.Version)
    		excluded = make(map[module.Version]bool)
    	)
    	var exclude func(module.Version)
    	exclude = func(m module.Version) {
    		if excluded[m] {
    			return
    		}
    		excluded[m] = true
    		for _, p := range rdeps[m] {
    			exclude(p)
    		}
    	}
    	var add func(module.Version)
    	add = func(m module.Version) {
    		if added[m] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. 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)
  5. src/regexp/exec2_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !race
    
    package regexp
    
    import (
    	"testing"
    )
    
    // This test is excluded when running under the race detector because
    // it is a very expensive test and takes too long.
    func TestRE2Exhaustive(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping TestRE2Exhaustive during short test")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 508 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/script/list_all_gobuild.txt

    env GOOS=linux
    env GOARCH=amd64
    go list all
    
    # go list all should work with GOOS=darwin, but it used to fail because
    # in the absence of //go:build support, p looked like it needed q
    # (p_test.go was not properly excluded), and q was Linux-only.
    #
    # Also testing with r and s that +build lines keep working.
    env GOOS=darwin
    go list all
    
    -- go.mod --
    go 1.17
    module m
    
    -- p/p.go --
    package p
    
    -- p/p_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 674 bytes
    - Viewed (0)
  10. 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)
Back to top