Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 8,903 for usedBy (0.18 sec)

  1. test/fixedbugs/issue14006.go

    	case 2:
    	}
    
    	var y string
    	switch y {
    	case "foo":
    		"bar":	// ERROR "unexpected :|expected .*;.* or .*}.* or newline|value computed is not used"
    	case "bar":
    	}
    
    	switch y {
    	case "foo":
    		"bar": ;	// ERROR "unexpected :|expected .*;.* or .*}.* or newline|value computed is not used"
    	case "bar":
    	}
    
    	var z bool
    	switch {
    	case z:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifact.java

        /**
         * The name used to publish the artifact file, never <code>null</code>.
         * Defaults to the name of the module that this artifact belongs to.
         */
        String getName();
    
        /**
         * Sets the name used to publish the artifact file.
         * @param name The name.
         */
        void setName(String name);
    
        /**
         * The type used to publish the artifact file, never <code>null</code>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go

    package unix
    
    import "unsafe"
    
    // PtraceRegsArm is the registers used by arm binaries.
    type PtraceRegsArm struct {
    	Uregs [18]uint32
    }
    
    // PtraceGetRegsArm fetches the registers used by arm binaries.
    func PtraceGetRegsArm(pid int, regsout *PtraceRegsArm) error {
    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    }
    
    // PtraceSetRegsArm sets the registers used by arm binaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/go/main.go

    func handleChdirFlag() {
    	_, used := lookupCmd(os.Args[1:])
    	used++ // because of [1:]
    	if used >= len(os.Args) {
    		return
    	}
    
    	var dir string
    	switch a := os.Args[used]; {
    	default:
    		return
    
    	case a == "-C", a == "--C":
    		if used+1 >= len(os.Args) {
    			return
    		}
    		dir = os.Args[used+1]
    		os.Args = slices.Delete(os.Args, used, used+2)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/runtime/linkname.go

    package runtime
    
    import _ "unsafe"
    
    // used in internal/godebug and syscall
    //go:linkname write
    
    // used by cgo
    //go:linkname _cgo_panic_internal
    //go:linkname cgoAlwaysFalse
    //go:linkname cgoUse
    //go:linkname cgoCheckPointer
    //go:linkname cgoCheckResult
    //go:linkname cgoNoCallback
    //go:linkname gobytes
    //go:linkname gostringn
    
    // used in plugin
    //go:linkname doInit
    
    // used in math/bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 778 bytes
    - Viewed (0)
  6. tools/packaging/common/sidecar.env

    # Environment variables used to configure istio startup
    
    # Comma separated list of CIDRs used for services. If set, iptables will be run to allow istio
    # sidecar to intercept outbound calls to configured addresses. If not set, outbound istio sidecar
    # will not be used via iptables.
    # ISTIO_SERVICE_CIDR=
    
    # Name of the service exposed by the machine.
    # ISTIO_SERVICE=myservice
    
    # The mode used to redirect inbound connections to Envoy. This setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    required by the respective component specification. Used in: module --> <!ELEMENT alt-dd (#PCDATA)> <!-- The connector element specifies the URI of a resource adapter archive file, relative to the top level of the application package. Used in: module --> <!ELEMENT connector (#PCDATA)> <!-- The context-root element specifies the context root of a web application. Used in: web --> <!ELEMENT context-root (#PCDATA)> <!-- The description element is used to provide text describing the parent element. The...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         */
        WorkResult sync(Action<? super CopySpec> action);
    
        /**
         * Deletes the specified files.
         * The given action is used to configure a {@link DeleteSpec}, which is then used to delete the files.
         *
         * @param action Action to configure the DeleteSpec
         * @return {@link WorkResult} that can be used to check if delete did any work.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. pkg/controller/certificates/signer/config/types.go

    	// X509 CA certificate used to issue cluster-scoped certificates
    	ClusterSigningCertFile string
    	// clusterSigningCertFile is the filename containing a PEM-encoded
    	// RSA or ECDSA private key used to issue cluster-scoped certificates
    	ClusterSigningKeyFile string
    
    	// kubeletServingSignerConfiguration holds the certificate and key used to issue certificates for the kubernetes.io/kubelet-serving signer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConnectionVersion4.java

     * <li>Implementations should implement {@link org.gradle.tooling.internal.protocol.test.InternalTestExecutionConnection}. This is used by all consumer versions from 2.6-rc-1.
     * <li>Implementations should implement {@link InternalPhasedActionConnection}. This is used by all consumer versions from 4.8.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top