Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,305 for usedBy (0.17 sec)

  1. src/cmd/compile/internal/ssa/deadstore.go

    			// for open-coded defers from being removed (since they
    			// may not be used by the inline code, but will be used by
    			// panic processing).
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    				return
    			}
    			if !used.Has(n) {
    				used.Add(n)
    				changed = true
    			}
    			return
    		case OpStore, OpMove, OpZero:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. build-logic-commons/basics/build.gradle.kts

        api(platform(project(":build-platform")))
    
        implementation("com.google.guava:guava") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm-commons") {
            because("Used by class analysis")
        }
    
        implementation(kotlin("compiler-embeddable") as String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 1022 bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/deployment/namespace.go

    	Namespace namespace.Instance
    
    	// Standard echo app to be used by tests
    	A echo.Instances
    	// Standard echo app to be used by tests
    	B echo.Instances
    	// Standard echo app to be used by tests
    	C echo.Instances
    	// Dual-stack echo app to be used by tests if running in dual-stack mode
    	D echo.Instances
    	// IPv6 only echo app to be used by tests if running in dual-stack mode
    	E echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //   - Add `ClusterConfiguration.EncryptionAlgorithm` that can be used to set the asymmetric encryption algorithm
    //     used for this cluster's keys and certificates. Can be one of "RSA-2048" (default), "RSA-3072", "RSA-4096" or "ECDSA-P256".
    //   - Add `ClusterConfiguration.DNS.Disabled` and `ClusterConfiguration.Proxy.Disabled` that can be used to disable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/encoding/hex/hex.go

    		return
    	}
    	h.closed = true
    	if h.used == 0 {
    		return
    	}
    	h.buf[0] = ' '
    	h.buf[1] = ' '
    	h.buf[2] = ' '
    	h.buf[3] = ' '
    	h.buf[4] = '|'
    	nBytes := h.used
    	for h.used < 16 {
    		l := 3
    		if h.used == 7 {
    			l = 4
    		} else if h.used == 15 {
    			l = 5
    		}
    		_, err = h.w.Write(h.buf[:l])
    		if err != nil {
    			return
    		}
    		h.used++
    	}
    	h.rightChars[nBytes] = '|'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

         */
        @Override
        File getBaseDir();
    
        /**
         * Creates an indexed cache implementation that is contained within this cache. This method may be used at any time.
         *
         * <p>The returned cache may only be used by an action being run from {@link #useCache(java.util.function.Supplier)}.
         * In this instance, an exclusive lock will be held on the cache.
         *
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pkg/volume/volume.go

    	// used, available space).
    	MetricsProvider
    }
    
    // MetricsProvider exposes metrics (e.g. used,available space) related to a
    // Volume.
    type MetricsProvider interface {
    	// GetMetrics returns the Metrics for the Volume. Maybe expensive for
    	// some implementations.
    	GetMetrics() (*Metrics, error)
    }
    
    // Metrics represents the used and available bytes of the Volume.
    type Metrics struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

        private GradleVersion consumerVersion;
    
        /**
         * This is used by consumers 1.0-milestone-3 and later
         */
        public DefaultConnection() {
            LOGGER.debug("Tooling API provider {} created.", GradleVersion.current().getVersion());
        }
    
        /**
         * This is used by consumers 1.2-rc-1 and later.
         */
        @Override
        public void configure(ConnectionParameters parameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

        }
    
        def "emits deprecation warning when convention mapping is used with Provider"() {
            buildFile << """
                abstract class MyTask extends DefaultTask {
                    @Inject abstract ProviderFactory getProviderFactory()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/builtins0.go

    	close(r /* ERROR "receive-only channel" */)
    	close(c)
    	_ = close /* ERROR "used as value" */ (c)
    
    	var s []chan int
    	close(s... /* ERROR "invalid use of ..." */ )
    }
    
    func close2() {
    	f1 := func() (ch chan int) { return }
    	f2 := func() (ch chan int, x int) { return }
    	close(f0 /* ERROR "used as value" */ ())
    	close(f1())
    	close(f2()) // ERROR "too many arguments"
    }
    
    func complex1() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top