Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for a$ (0.04 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	/* exprs > chan */
    
    	// InvalidReceive occurs when there is a channel receive from a value that
    	// is either not a channel, or is a send-only channel.
    	//
    	// Example:
    	//  func f() {
    	//  	var x = 1
    	//  	<-x
    	//  }
    	InvalidReceive
    
    	// InvalidSend occurs when there is a channel send to a value that is not a
    	// channel, or is a receive-only channel.
    	//
    	// Example:
    	//  func f() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. cni/pkg/plugin/testdata/dns.txt.golden

    -A ISTIO_OUTPUT -o lo -p tcp ! --dport 53 -m owner ! --gid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -p tcp --dport 53 -j REDIRECT --to-ports 15053
    -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    -A ISTIO_OUTPUT -j ISTIO_REDIRECT
    -A OUTPUT -p udp -j ISTIO_OUTPUT
    -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 888 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner ftp -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    iptables -t nat -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. docs/zh/docs/index.md

    ---
    
    ## **Typer**,命令行中的 FastAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

        }
    
        def 'reads a unique lock file from a custom location'() {
            given:
            def file = tmpDir.file('custom', 'lock.file')
            lockFile.set(file)
            file << """#ignored
    bar=a,c
    foo=a,b,c
    empty=d
    """
    
            when:
            def result = lockFileReaderWriter.readUniqueLockFile()
    
            then:
            result == [a: ['bar', 'foo'], b: ['foo'], c: ['bar', 'foo'], d: []]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "HashSet<String>"                    | "['a', 'b', 'c'] as HashSet"              | "[a, b, c]"
            "LinkedHashSet<String>"              | "['a', 'b', 'c'] as LinkedHashSet"        | "[a, b, c]"
            "CopyOnWriteArraySet<String>"        | "['a', 'b', 'c'] as CopyOnWriteArraySet"  | "[a, b, c]"
            "TreeSet<String>"                    | "['a', 'b', 'c'] as TreeSet"              | "[a, b, c]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

        <span id="action-title"></span>
        <hr>
        <a title="{{.Help.list}}" id="action-source" href="./source">Show source code</a>
        <a title="{{.Help.list}}" id="action-source-tab" href="./source" target="_blank">Show source in new tab</a>
        <hr>
        <a title="{{.Help.focus}}" id="action-focus" href="?">Focus</a>
        <a title="{{.Help.ignore}}" id="action-ignore" href="?">Ignore</a>
        <a title="{{.Help.hide}}" id="action-hide" href="?">Hide</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (1)
  8. pkg/istio-agent/agent.go

    			}
    		})
    		return nt
    	}
    	return nil
    }
    
    func (a *Agent) Close() {
    	if a.xdsProxy != nil {
    		a.xdsProxy.close()
    	}
    	if a.localDNSServer != nil {
    		a.localDNSServer.Close()
    	}
    	if a.sdsServer != nil {
    		a.sdsServer.Stop()
    	}
    	if a.secretCache != nil {
    		a.secretCache.Close()
    	}
    	if a.fileWatcher != nil {
    		_ = a.fileWatcher.Close()
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

    import java.util.function.BiFunction;
    
    /**
     * A container object that provides a value of a specific type. The value can be retrieved using one of the query methods
     * such as {@link #get()} or {@link #getOrNull()}.
     *
     * <p>
     * A provider may not always have a value available, for example when the value may not yet be known but will be known
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/logging.golden

    iptables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top