Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for table_1 (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    }
    
    // Error sends an Error event.
    func (f *FakeWatcher) Error(errValue runtime.Object) {
    	f.result <- Event{Error, errValue}
    }
    
    // Action sends an event of the requested type, for table-based testing.
    func (f *FakeWatcher) Action(action EventType, obj runtime.Object) {
    	f.result <- Event{action, obj}
    }
    
    // RaceFreeFakeWatcher lets you test anything that consumes a watch.Interface; threadsafe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  2. samples/addons/grafana.yaml

    ce)), \"destination_workload_var\", \".\", \"destination_workload\", \"destination_workload_namespace\")","format":"table","hide":false,"instant":true,"interval":"","intervalFactor":1,"legendFormat":"{{ destination_workload }}.{{ destination_workload_namespace }}","refId":"E"}],"title":"HTTP/GRPC Workloads","transformations":[{"id":"merge","options":{"reducers":[]}}],"type":"table"},{"datasource":{"uid":"${datasource}","type":"prometheus"},"gridPos":{"h":18,"w":24,"x":0,"y":33},"id":109,"links":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    	"k8s.io/kubernetes/pkg/util/async"
    	utilexec "k8s.io/utils/exec"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    	"sigs.k8s.io/knftables"
    )
    
    const (
    	// Our nftables table. All of our chains/sets/maps are created inside this table,
    	// so they don't need any "kube-" or "kube-proxy-" prefix of their own.
    	kubeProxyTable = "kube-proxy"
    
    	// base chains
    	filterPreroutingChain     = "filter-prerouting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    	if a.cfg.DNSCapture && a.cfg.ProxyType == model.SidecarProxy {
    		if !a.localDNSServer.IsReady() {
    			return errors.New("istio DNS capture is turned ON and DNS lookup table is not ready yet")
    		}
    	}
    	return nil
    }
    
    // GetDNSTable builds DNS table used in debugging interface.
    func (a *Agent) GetDNSTable() *dnsProto.NameTable {
    	if a.localDNSServer != nil && a.localDNSServer.NameTable() != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. tests/preload_test.go

    		}
    	}
    
    	CheckUser(t, users2[0], users[0])
    
    	var users3 []User
    	if err := DB.Preload("Account", func(tx *gorm.DB) *gorm.DB {
    		return tx.Table("accounts AS a").Select("a.*")
    	}).Find(&users3, "id IN ?", userIDs).Error; err != nil {
    		t.Errorf("failed to query, got error %v", err)
    	}
    	sort.Slice(users3, func(i, j int) bool {
    		return users2[i].ID < users2[j].ID
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	splitOffset int64
    }
    
    // lookup looks up a LocalSlot in the slot canonicalizer "sc", returning
    // a canonical index for the slot, and adding it to the table if need
    // be. Return value is the canonical slot index, and a boolean indicating
    // whether the slot was found in the table already (TRUE => found).
    func (sc *slotCanonicalizer) lookup(ls LocalSlot) (SlKeyIdx, bool) {
    	split := noSlot
    	if ls.SplitOf != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                // referenced in the symbol table automatically, but not its `expect` counterpart, because it isn't contained in the files to
                // compile. `shouldReferenceUndiscoveredExpectSymbols` references such `expect` symbols in the symbol table so that they can
                // subsequently be stubbed.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. callbacks/preload.go

    						return err
    					}
    				default:
    					return gorm.ErrInvalidData
    				}
    			} else {
    				tx := db.Table("").Session(&gorm.Session{Context: db.Statement.Context, SkipHooks: db.Statement.SkipHooks})
    				tx.Statement.ReflectValue = db.Statement.ReflectValue
    				tx.Statement.Unscoped = db.Statement.Unscoped
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      llvm::SmallDenseSet<FuncOp> visited_functions;
      auto tf_dialect = module.getContext()->getLoadedDialect("tf");
      // Construct SymbolTable to enable cheap function lookups. The cost
      // of constructing the table is offset by the number of queries.
      SymbolTable symbol_table(module);
      for (auto function : module.getOps<FuncOp>()) {
        if (function.isExternal())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta.go

    	// initialize with empty config, leading to reconnected Envoys loosing
    	// configuration. This is an additional safety check inaddition to adding
    	// cachesSynced logic to readiness probe to handle cases where kube-proxy
    	// ip tables update latencies.
    	// See https://github.com/istio/istio/issues/25495.
    	if !s.IsServerReady() {
    		return errors.New("server is not ready to serve discovery information")
    	}
    
    	ctx := stream.Context()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top