Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,091 for GETs (0.28 sec)

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

    # We're testing cache behavior, so start with a clean GOCACHE.
    env GOCACHE=$WORK/cache
    
    # Build something so that the cache gets populates
    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A goroutine gets created on a running P, then starts running.
    	b0 := g1.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoCreate", trace.GoID(5), testgen.NoStack, testgen.NoStack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_translate_flags.h

    extern bool emit_select_tf_ops;
    extern bool emit_custom_ops;
    // The flag to control whether to lower tensorlist ops into TF ops.
    extern bool lower_tensor_list_ops;
    // The flag to control whether debug info gets stripped on export.
    extern bool strip_debug_info;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 23 05:49:32 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/util/cgroups_unsupported.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package util
    
    // GetPids gets pids of the desired cgroup
    func GetPids(cgroupPath string) ([]int, error) {
    	return nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 732 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * the default value the permissions start out with before the configuration is applied.
         * For details see {@link ConfigurableFilePermissions}.
         *
         * @param configureAction The configuration that gets applied to the newly created {@code FilePermissions}.
         *
         * @since 8.3
         */
        ConfigurableFilePermissions filePermissions(Action<? super ConfigurableFilePermissions> configureAction);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    bool IsInStableHloOpRegion(Operation* op);
    
    // Checks if a given einsum op is supported for XlaDotV2 quantization.
    bool IsEinsumSupportedByXlaDotV2(StringAttr equation_attr);
    
    // Gets the quantization method from `op`. It is retrieved from the
    // `kQuantizationMethodAttr` string attribute. Returns
    // `absl::InvalidArgumentError` when the attribute doesn't exist. Returns
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    		return int(we.InitialSeats)
    	}
    
    	return int(we.FinalSeats)
    }
    
    // objectCountGetterFunc represents a function that gets the total
    // number of objects for a given resource.
    type objectCountGetterFunc func(string) (int64, error)
    
    // watchCountGetterFunc represents a function that gets the total
    // number of watchers potentially interested in a given request.
    type watchCountGetterFunc func(*apirequest.RequestInfo) int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/framework/fake_listers.go

    // List returns []v1.ReplicationController, the list of all ReplicationControllers.
    func (f ControllerLister) List(labels.Selector) ([]*v1.ReplicationController, error) {
    	return f, nil
    }
    
    // GetPodControllers gets the ReplicationControllers that have the selector that match the labels on the given pod
    func (f ControllerLister) GetPodControllers(pod *v1.Pod) (controllers []*v1.ReplicationController, err error) {
    	var selector labels.Selector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/testdata/arena_fail.go

    	// should poison the arena memory.
    	//
    	// MSAN should detect that this access is to freed
    	// memory. This may crash with an "accessed freed arena
    	// memory" error before MSAN gets a chance, but if MSAN
    	// was not enabled there would be a chance that this
    	// could fail to crash on its own.
    	println(x[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 700 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/InteractionExpectation.groovy

    package org.gradle.integtests.fixtures.publish
    
    enum InteractionExpectation {
        GET,
        HEAD,
        MAYBE,
        NONE,
        GET_MISSING,
        HEAD_MISSING,
        GET_MISSING_FOUND_ELSEWHERE //do not expect fallback GETs if another repository contains the module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 876 bytes
    - Viewed (0)
Back to top