Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for compareIDs (0.19 sec)

  1. pilot/pkg/model/telemetry.go

    }
    
    func disableHostHeaderFallback(class networking.ListenerClass) bool {
    	return class == networking.ListenerClassSidecarInbound || class == networking.ListenerClassGateway
    }
    
    // Equal compares two computedTelemetries for equality. This was created to help with testing. Because of the nature of the structs being compared,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug_test.go

    // TestNexting go-builds a file, then uses a debugger (default delve, optionally gdb)
    // to next through the generated executable, recording each line landed at, and
    // then compares those lines with reference file(s).
    // Flag -u updates the reference file(s).
    // Flag -g changes the debugger to gdb (and uses gdb-specific reference files)
    // Flag -v is ever-so-slightly verbose.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	{'x', sharpNumFlag, argRune | argInt | argString | argPointer | argFloat | argComplex},
    	{'X', sharpNumFlag, argRune | argInt | argString | argPointer | argFloat | argComplex},
    }
    
    // okPrintfArg compares the formatState to the arguments actually present,
    // reporting any discrepancies it can discern. If the final argument is ellipsissed,
    // there's little it can do for that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    	UsageLine: "module-auth",
    	Short:     "module authentication using go.sum",
    	Long: `
    When the go command downloads a module zip file or go.mod file into the
    module cache, it computes a cryptographic hash and compares it with a known
    value to verify the file hasn't changed since it was first downloaded. Known
    hashes are stored in a file in the module root directory named go.sum. Hashes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    			}
    			s = nodeSorter{ns, scoreOrder}
    		}
    	default:
    		return fmt.Errorf("report: unrecognized sort ordering: %d", o)
    	}
    	sort.Sort(s)
    	return nil
    }
    
    // compareNodes compares two nodes to provide a deterministic ordering
    // between them. Two nodes cannot have the same Node.Info value.
    func compareNodes(l, r *Node) bool {
    	return fmt.Sprint(l.Info) < fmt.Sprint(r.Info)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // "typename EnableIf<expression>::type* = 0" as the last parameter.
    template<bool> struct EnableIf;
    template<> struct EnableIf<true> { typedef void type; };  // NOLINT
    
    // Utilities for native arrays.
    
    // ArrayEq() compares two k-dimensional native arrays using the
    // elements' operator==, where k can be any integer >= 0.  When k is
    // 0, ArrayEq() degenerates into comparing a single pair of values.
    
    template <typename T, typename U>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager.go

    		return true
    	}
    	return false
    }
    
    // needsReconcile compares the given status with the status in the pod manager (which
    // in fact comes from apiserver), returns whether the status needs to be reconciled with
    // the apiserver. Now when pod status is inconsistent between apiserver and kubelet,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    )
    
    /*
    Stack layout parameters.
    Included both by runtime (compiled via 6c) and linkers (compiled via gcc).
    
    The per-goroutine g->stackguard is set to point StackGuard bytes
    above the bottom of the stack.  Each function compares its stack
    pointer against g->stackguard to check for overflow.  To cut one
    instruction from the check sequence for functions with tiny frames,
    the stack is allowed to protrude StackSmall bytes below the stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    		out.ServiceAccounts = make([]string, len(s.ServiceAccounts))
    		copy(out.ServiceAccounts, s.ServiceAccounts)
    	}
    	out.ClusterVIPs = *s.ClusterVIPs.DeepCopy()
    	return &out
    }
    
    // Equals compares two service objects.
    func (s *Service) Equals(other *Service) bool {
    	if s == nil {
    		return other == nil
    	}
    	if other == nil {
    		return s == nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. src/net/http/clientserver_test.go

    	}
    	if got, haveCL := res.Header["Content-Length"]; haveCL {
    		t.Errorf("Unexpected Content-Length: %q", got)
    	}
    }
    
    type reqFunc func(c *Client, url string) (*Response, error)
    
    // h12Compare is a test that compares HTTP/1 and HTTP/2 behavior
    // against each other.
    type h12Compare struct {
    	Handler            func(ResponseWriter, *Request)    // required
    	ReqFunc            reqFunc                           // optional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
Back to top