Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 963 for REAL (0.12 sec)

  1. test/rename.go

    			false +
    			float32 +
    			float64 +
    			imag +
    			int +
    			int8 +
    			int16 +
    			int32 +
    			int64 +
    			len +
    			make +
    			new +
    			nil +
    			panic +
    			print +
    			println +
    			real +
    			recover +
    			rune +
    			string +
    			true +
    			uint +
    			uint8 +
    			uint16 +
    			uint32 +
    			uint64 +
    			uintptr +
    			iota
    	if n != NUM*(NUM-1)/2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  2. tests/integration/security/fuzz/README.md

    The test backend uses real Web servers (`apache`, `nginx` and `tomcat`) configured to serve at the above predefined path.
    If a fuzzer generated request successfully gets the data at the predefined path, it means a policy bypass has happened
    otherwise it should have been rejected with 403 by the policy.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. pkg/test/framework/telemetry.go

    	TelemetryRetryDelay time.Duration
    	// TelemetryRetryTimeout is the retry timeout used in tests.
    	TelemetryRetryTimeout time.Duration
    	// UseRealStackdriver controls whether to use real stackdriver backend for testing or not.
    	UseRealStackdriver bool
    )
    
    func init() {
    	flag.DurationVar(&TelemetryRetryDelay, "istio.test.telemetry.retryDelay", time.Second*2, "Default retry delay used in tests")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 07 19:57:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	finalWork fcrequest.SeatSeconds // only final work
    }
    
    // queue is a sequence of requests that have arrived but not yet finished
    // execution in both the real and virtual worlds.
    type queue struct {
    	// The requestsWaiting not yet executing in the real world are stored in a FIFO list.
    	requestsWaiting fifo
    
    	// nextDispatchR is the R progress meter reading at
    	// which the next request will be dispatched in the virtual world.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. cni/pkg/plugin/cnieventclient_test.go

    		Interface: &fakeIDX,
    		Address: net.IPNet{
    			IP: fakeIP,
    		},
    		Gateway: fakeGW,
    	}
    )
    
    func TestPushCNIAddEventSucceed(t *testing.T) {
    	// Fake out a test HTTP server and use that instead of a real HTTP server over gRPC to validate  req/resp flows
    	testServer := httptest.NewServer(http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
    		res.WriteHeader(http.StatusOK)
    		res.Write([]byte("server happy"))
    	}))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. test/const5.go

    	n5 = len(<-c) // ERROR "is not a constant|is not constant"
    
    	n6 = cap(f())  // ERROR "is not a constant|is not constant"
    	n7 = cap(<-c) // ERROR "is not a constant|is not constant"
    	n8 = real(z) // ERROR "is not a constant|is not constant"
    	n9 = len([4]float64{real(z)}) // ERROR "is not a constant|is not constant"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 835 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/dec.rules

    // complex ops
    (ComplexReal (ComplexMake real _  )) => real
    (ComplexImag (ComplexMake _ imag )) => imag
    
    (Load <t> ptr mem) && t.IsComplex() && t.Size() == 8 =>
      (ComplexMake
        (Load <typ.Float32> ptr mem)
        (Load <typ.Float32>
          (OffPtr <typ.Float32Ptr> [4] ptr)
          mem)
        )
    (Store {t} dst (ComplexMake real imag) mem) && t.Size() == 8 =>
      (Store {typ.Float32}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/desired_state_of_wold_selinux_metrics.go

    			StabilityLevel: compbasemetrics.ALPHA,
    			Help:           "Number of errors when kubelet cannot compute SELinux context for a container that are ignored. They will become real errors when SELinuxMountReadWriteOncePod feature is expanded to all volume access modes.",
    		},
    		[]string{"access_mode"},
    	)
    	seLinuxPodContextMismatchErrors = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 12:16:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue4463.go

    	cap(a)				// ERROR "not used"
    	complex(1, 2)			// ERROR "not used"
    	imag(1i)			// ERROR "not used"
    	len(a)				// ERROR "not used"
    	make([]int, 10)			// ERROR "not used"
    	new(int)			// ERROR "not used"
    	real(1i)			// ERROR "not used"
    	unsafe.Alignof(a)		// ERROR "not used"
    	unsafe.Offsetof(s.f)		// ERROR "not used"
    	unsafe.Sizeof(a)		// ERROR "not used"
    
    	close(c)
    	copy(a, a)
    	delete(m, 0)
    	panic(0)
    	print("foo")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  10. src/encoding/gob/decgen.go

    	},
    	{
    		"complex64",
    		"Complex64",
    		`real := float32FromBits(state.decodeUint(), ovfl)
    		imag := float32FromBits(state.decodeUint(), ovfl)
    		slice[i] = complex(float32(real), float32(imag))`,
    	},
    	{
    		"complex128",
    		"Complex128",
    		`real := float64FromBits(state.decodeUint())
    		imag := float64FromBits(state.decodeUint())
    		slice[i] = complex(real, imag)`,
    	},
    	{
    		"float32",
    		"Float32",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:15:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top