Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,184 for unserved (0.12 sec)

  1. tests/integration/ambient/baseline_test.go

    				HBONE:   hbwl,
    				Check:   check.OK(),
    			})
    			run("Unserved VIP destination", echo.CallOptions{
    				To:      apps.Captured,
    				Count:   1,
    				Address: apps.Captured[0].Address(),
    				Port:    echo.Port{ServicePort: ports.HTTP.ServicePort},
    				Scheme:  scheme.HTTP,
    				HBONE:   hbsvc,
    				Check:   check.Error(),
    			})
    			run("Unserved pod destination", echo.CallOptions{
    				To:      apps.Captured,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package configstore
    
    import (
    	"os/exec"
    	"syscall"
    
    	"golang.org/x/sys/windows"
    )
    
    func init() {
    	needNoConsole = needNoConsoleWindows
    }
    
    func needNoConsoleWindows(cmd *exec.Cmd) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/internal/trace/mud.go

    func (d *mud) add(l, r, area float64) {
    	if area == 0 {
    		return
    	}
    
    	if r < l {
    		l, r = r, l
    	}
    
    	// Add the edges.
    	if l == r {
    		d.unsorted = append(d.unsorted, edge{l, 0, area})
    	} else {
    		delta := area / (r - l)
    		d.unsorted = append(d.unsorted, edge{l, delta, 0}, edge{r, -delta, 0})
    	}
    
    	// Update the histogram.
    	h := &d.hist
    	lbFloat, lf := math.Modf(l * mudDegree)
    	lb := int(lbFloat)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/compiler_internal.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    )
    
    // This file should not be copied to go/types.  See go.dev/issue/67477
    
    // RenameResult takes an array of (result) fields and an index, and if the indexed field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

          "^.*(conv|dot_general).*");
    
      WeightOnlyPtq& weight_only_ptq_spec =
          *spec.mutable_method()->mutable_weight_only_ptq();
      if (auto [iter, inserted] =
              weight_only_ptq_spec.mutable_input_quantized_types()->try_emplace(1);
          inserted) {
        iter->second.mutable_dimension_specs();
      }
      return spec;
    }
    
    // Returns a `QuantizationSpec` for performing static-range PTQ on the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    	'+':  true, // sub-delims
    	',':  true, // sub-delims
    	'-':  true, // unreserved
    	'.':  true, // unreserved
    	':':  true, // IPv6address + Host expression's optional port
    	';':  true, // sub-delims
    	'=':  true, // sub-delims
    	'[':  true,
    	'\'': true, // sub-delims
    	']':  true,
    	'_':  true, // unreserved
    	'~':  true, // unreserved
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/apis.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cfile
    
    import (
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/rtcov"
    	"io"
    	"sync/atomic"
    	"unsafe"
    )
    
    // WriteMetaDir implements [runtime/coverage.WriteMetaDir].
    func WriteMetaDir(dir string) error {
    	if !finalHashComputed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/net/url/url.go

    			return false
    		}
    	}
    
    	switch c {
    	case '-', '_', '.', '~': // §2.3 Unreserved characters (mark)
    		return false
    
    	case '$', '&', '+', ',', '/', ':', ';', '=', '?', '@': // §2.2 Reserved characters (reserved)
    		// Different sections of the URL allow a few of
    		// the reserved characters to appear unescaped.
    		switch mode {
    		case encodePath: // §3.3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/node_container_manager_linux.go

    				time.Sleep(time.Minute)
    			}
    		}()
    	}
    	// Now apply kube reserved and system reserved limits if required.
    	if nc.EnforceNodeAllocatable.Has(kubetypes.SystemReservedEnforcementKey) {
    		klog.V(2).InfoS("Enforcing system reserved on cgroup", "cgroupName", nc.SystemReservedCgroupName, "limits", nc.SystemReserved)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/internal/concurrent/hashtriemap_test.go

    	t.Helper()
    	return func(got V, loaded bool) {
    		t.Helper()
    
    		if loaded {
    			t.Errorf("expected inserted key %v to have been stored, not loaded", key)
    		}
    		if got != want {
    			t.Errorf("expected inserted key %v to have value %v, got %v", key, want, got)
    		}
    	}
    }
    
    func expectDeleted[K, V comparable](t *testing.T, key K, old V) func(deleted bool) {
    	t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top