Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,731 for nfound (0.12 sec)

  1. src/internal/coverage/cfile/emitdata_test.go

    			continue
    		}
    		nfound++
    		want := "100.0%"
    		if f[len(f)-1] != want {
    			t.Errorf("wanted %s got: %q\n", want, line)
    			bad = true
    		}
    	}
    	if nfound != 1 {
    		t.Errorf("wanted 1 found, got %d\n", nfound)
    		bad = true
    	}
    	if bad {
    		t.Logf("func output:\n%s\n", string(b))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/internal/pkgbits/decoder.go

    	// to reliably expand that again.
    
    	fmt.Printf("export data desync: package %q, section %v, index %v, offset %v\n", r.common.pkgPath, r.k, r.Idx, pos)
    
    	fmt.Printf("\nfound %v, written at:\n", mHave)
    	if len(writerPCs) == 0 {
    		fmt.Printf("\t[stack trace unavailable; recompile package %q with -d=syncframes]\n", r.common.pkgPath)
    	}
    	for _, pc := range writerPCs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  3. cni/pkg/plugin/sidecar_redirect.go

    			"kubevirtInterfaces", isFound, valErr)
    	}
    	if v, found := pi.ProxyEnvironments["ISTIO_META_DNS_CAPTURE"]; found {
    		// parse and set the bool value of dnsRedirect
    		redir.dnsRedirect, valErr = strconv.ParseBool(v)
    		if valErr != nil {
    			log.Warnf("cannot parse DNS capture environment variable %v", valErr)
    		}
    	}
    	if v, found := pi.ProxyEnvironments["ISTIO_DUAL_STACK"]; found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/internal/bytealg/index_ppc64x.s

    	MOVD R7, R3    // Return byte where found
    	RET
    found4:
    	ADD $1, R7     // found from unrolled loop at index 3
    found3:
    	ADD $1, R7     // found from unrolled loop at index 2
    found2:
    	ADD $1, R7     // found from unrolled loop at index 1
    found:                 // found at index 0
    	SUB  R3, R7    // Return byte where found
    	MOVD R7, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    		// We only merge if the found service is in the same namespace as the one we're trying to add
    		copied := foundSvc.svc.DeepCopy()
    		for _, p := range s.Ports {
    			found := false
    			for _, osp := range copied.Ports {
    				if p.Port == osp.Port {
    					found = true
    					break
    				}
    			}
    			if !found {
    				copied.Ports = append(copied.Ports, p)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		} else if tt, found := gatewayClass.Labels[constants.AmbientWaypointForTrafficTypeLabel]; found {
    			// Check for a declared traffic type that is allowed to pass through the Waypoint's GatewayClass
    			trafficType = tt
    		}
    
    		// Check for a declared traffic type that is allowed to pass through the Waypoint
    		if tt, found := gateway.Labels[constants.AmbientWaypointForTrafficTypeLabel]; found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/dwarf.go

    		precursor: make(map[*LSym]fnState),
    	}
    }
    
    func (ft *DwarfFixupTable) GetPrecursorFunc(s *LSym) Func {
    	if fnstate, found := ft.precursor[s]; found {
    		return fnstate.precursor
    	}
    	return nil
    }
    
    func (ft *DwarfFixupTable) SetPrecursorFunc(s *LSym, fn Func) {
    	if _, found := ft.precursor[s]; found {
    		ft.ctxt.Diag("internal error: DwarfFixupTable.SetPrecursorFunc double call on %v", s)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_builder_test.go

    		if vo := xdstest.ExtractListener(model.VirtualOutboundListenerName, listeners); vo == nil {
    			t.Fatalf("expect virtual listener, found %s", listeners[0].Name)
    		}
    		vi := xdstest.ExtractListener(model.VirtualInboundListenerName, listeners)
    		if vi == nil {
    			t.Fatalf("expect virtual inbound listener, found %s", listeners[0].Name)
    		}
    
    		byListenerName := map[string]int{}
    
    		for _, fc := range vi.FilterChains {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider.go

    		containerID := stats.Attributes.Id
    		container, found := containerMap[containerID]
    		if !found {
    			continue
    		}
    
    		podSandboxID := container.PodSandboxId
    		podSandbox, found := podSandboxMap[podSandboxID]
    		if !found {
    			continue
    		}
    
    		// Creates the stats of the pod (if not created yet) which the
    		// container belongs to.
    		ps, found := sandboxIDToPodStats[podSandboxID]
    		if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/types.go

    // Copyright 2021 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 atomic
    
    import "unsafe"
    
    // Int32 is an atomically accessed int32 value.
    //
    // An Int32 must not be copied.
    type Int32 struct {
    	noCopy noCopy
    	value  int32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (i *Int32) Load() int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top