Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 983 for takes (0.04 sec)

  1. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    env GOTOOLCHAIN=go1.21+path
    ! go version
    stderr 'go: cannot find "go1.21" in PATH'
    
    env GOTOOLCHAIN=go1.22+path
    ! go version
    stderr 'go: cannot find "go1.22" in PATH'
    
    # When a toolchain download takes place, download 1.X.0
    env GOTOOLCHAIN=auto
    rm go.mod
    go mod init m
    go mod edit -go=1.300 -toolchain=none
    ! go version
    stderr 'go: downloading go1.300.0 '
    
    rm go.mod
    go mod init m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/kubelet/types/types.go

    type Timestamp struct {
    	time time.Time
    }
    
    // NewTimestamp returns a Timestamp object using the current time.
    func NewTimestamp() *Timestamp {
    	return &Timestamp{time.Now()}
    }
    
    // ConvertToTimestamp takes a string, parses it using the RFC3339NanoLenient layout,
    // and converts it to a Timestamp object.
    func ConvertToTimestamp(timeString string) *Timestamp {
    	parsed, _ := time.Parse(logs.RFC3339NanoLenient, timeString)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        1) All the resource variable reads and writes are now outside of
           tf_device.cluster op.
        2) Instead of taking resource handles as input, this device computation now
           takes snapshotted values of that device.
        3) Some resource load operations are eliminated with store-load forwarding.
        4) Updated values to resource are appended to `tf_device.return` and used by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/sub-applications.md

    ## Mounting a **FastAPI** application
    
    "Mounting" means adding a completely "independent" application in a specific path, that then takes care of handling everything under that path, with the _path operations_ declared in that sub-application.
    
    ### Top-level application
    
    First, create the main, top-level, **FastAPI** application, and its *path operations*:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            outputContains("result = [a.jar.red.green, b.jar.red.green")
        }
    
        def "task input file collection can include the output of artifact transform of project dependencies which takes the output of another transform as input parameter"() {
            def configurationCache = newConfigurationCacheFixture()
    
            createDirs("a", "b")
            settingsFile << """
                include 'a', 'b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  6. src/runtime/traceevent.go

    		w.varint(uint64(arg))
    	}
    	return w
    }
    
    // stack takes a stack trace skipping the provided number of frames.
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    func (tl traceLocker) stack(skip int) traceArg {
    	return traceArg(traceStack(skip, nil, tl.gen))
    }
    
    // startPC takes a start PC for a goroutine and produces a unique
    // stack ID for it.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	}
    	metrics.WatchCacheCapacity.WithLabelValues(groupResource.String()).Set(float64(wc.capacity))
    	wc.cond = sync.NewCond(wc.RLocker())
    	wc.indexValidator = wc.isIndexValidLocked
    
    	return wc
    }
    
    // Add takes runtime.Object as an argument.
    func (w *watchCache) Add(obj interface{}) error {
    	object, resourceVersion, err := w.objectToVersionedRuntimeObject(obj)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. pkg/proxy/util/nodeport_addresses.go

    	matchAll             bool
    }
    
    // RFC 5735 127.0.0.0/8 - This block is assigned for use as the Internet host loopback address
    var ipv4LoopbackStart = net.IPv4(127, 0, 0, 0)
    
    // NewNodePortAddresses takes an IP family and the `--nodeport-addresses` value (which is
    // assumed to contain only valid CIDRs, potentially of both IP families) and returns a
    // NodePortAddresses object for the given family. If there are no CIDRs of the given
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/networkfilter.go

    		Name:       wellknown.TCPProxy,
    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(config)},
    	}
    	return tcpFilter
    }
    
    // buildOutboundNetworkFiltersWithSingleDestination takes a single cluster name
    // and builds a stack of network filters.
    func (lb *ListenerBuilder) buildOutboundNetworkFiltersWithSingleDestination(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

            testServices.assertions.assertEqualsToTestDataFileSibling(
                actualText,
                extension = ".${modificationEventKind.name.lowercase()}.txt",
    
                // Support differing result data. Using `testPrefix` takes away the ability for different kinds of tests (such as IDE vs.
                // Standalone modes) to have different test results (since `testPrefix` normally supports this functionality), but (1) we are
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top