Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for lake (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		return err
    	}
    	if f.annotations == nil {
    		f.annotations = make(map[string]string)
    	}
    	f.annotations[k] = v
    	return nil
    }
    
    // GetAnnotations reads annotations from FakeAttributes
    func (f *FakeAttributes) GetAnnotations(_ auditinternal.Level) map[string]string {
    	f.mutex.Lock()
    	defer f.mutex.Unlock()
    	annotations := make(map[string]string, len(f.annotations))
    	for k, v := range f.annotations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		return &fake.RESTClient{}, nil
    	}
    }
    
    func fakeClientWith(testName string, t *testing.T, data map[string]string) FakeClientFunc {
    	return func(version schema.GroupVersion) (RESTClient, error) {
    		return &fake.RESTClient{
    			GroupVersion:         corev1GV,
    			NegotiatedSerializer: scheme.Codecs.WithoutConversion(),
    			Client: fake.CreateHTTPClient(func(req *http.Request) (*http.Response, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    func (s *scavengerState) ready() {
    	s.sysmonWake.Store(1)
    }
    
    // wake immediately unparks the scavenger if necessary.
    //
    // Safe to run without a P.
    func (s *scavengerState) wake() {
    	lock(&s.lock)
    	if s.parked {
    		// Unset sysmonWake, since the scavenger is now being awoken.
    		s.sysmonWake.Store(0)
    
    		// s.parked is unset to prevent a double wake-up.
    		s.parked = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

        - [Deprecation](#deprecation)
        - [API Change](#api-change)
        - [Feature](#feature)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    
    <!-- END MUNGE: GENERATED_TOC -->
    
    # v1.31.0-alpha.1
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            array_ops_stack.stack([weight_row, weight_row])
        )
        # Insert fake quant to simulate a QAT model.
        weight = array_ops.fake_quant_with_min_max_args(
            weight, min=-0.1, max=0.2, num_bits=8, narrow_range=False
        )
    
        # shape: (2, 2)
        output_tensor = math_ops.matmul(matmul_input, weight)
        # Insert fake quant to simulate a QAT model.
        output_tensor = array_ops.fake_quant_with_min_max_args(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Thus, make sure to check whether your build behaves as expected after upgrading.
     * The `html` property on `CheckstyleReport` and `FindBugsReport` now returns a link:{groovyDslPath}/org.gradle.api.reporting.CustomizableHtmlReport.html[`CustomizableHtmlReport`] instance that is easier to configure from statically typed languages like Java and Kotlin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      }
    };
    
    // StridedSlice can have complicated attributes like begin_axis_mask,
    // end_axis_mask, ellipsis_axis_mask, new_axis_mask, shrink_axis_mask. These
    // masks will complicate the strided_slice computation logic, we can simplify
    // the logic by inserting a reshape op to pad the inputs so strided_slice can
    // be easier to handle.
    //
    // So the graph may looks like below:
    //   original_input -> strided_slice -> output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    	"net/http/httptrace"
    	"net/http/internal/ascii"
    	"net/textproto"
    	"net/url"
    	"os"
    	"reflect"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    )
    
    const fakeHopHeader = "X-Fake-Hop-Header-For-Test"
    
    func init() {
    	inOurTests = true
    	hopHeaders = append(hopHeaders, fakeHopHeader)
    }
    
    func TestReverseProxy(t *testing.T) {
    	const backendResponse = "I am the backend"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    			n := (*ptrtype)(unsafe.Pointer(t)).Elem.Size_
    			mask = make([]byte, n/goarch.PtrSize)
    			for i := uintptr(0); i < n; i += goarch.PtrSize {
    				off := (uintptr(p) + i - u.frame.varp + size) / goarch.PtrSize
    				mask[i/goarch.PtrSize] = locals.ptrbit(off)
    			}
    		}
    		return
    	}
    
    	// otherwise, not something the GC knows about.
    	// possibly read-only data, like malloc(0).
    	// must not have pointers
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			// that we can.
    			break
    		}
    
    		toAdd := make([]module.Version, 0, len(modAddedBy))
    		for m := range modAddedBy {
    			toAdd = append(toAdd, m)
    		}
    		gover.ModSort(toAdd) // to make errors deterministic
    
    		// We ran updateRequirements before resolving missing imports and it didn't
    		// make any changes, so we know that the requirement graph is already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top