Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for toPod (0.26 sec)

  1. security/pkg/server/ca/node_auth_test.go

    		uid:       "2",
    		node:      "zt-node-remote",
    	}
    	primaryClusterPods := []runtime.Object{
    		toPod(ztunnelPodPrimary, true),
    		toPod(podSameNodePrimary, false),
    	}
    	remoteClusterPods := []runtime.Object{
    		toPod(ztunnelPodRemote, true),
    		toPod(podSameNodeRemote, false),
    	}
    	remoteCluster2Pods := []runtime.Object{
    		toPod(ztunnelPodRemote2, true),
    	}
    
    	primaryClient := kube.NewFakeClient(primaryClusterPods...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. security/pkg/server/ca/server_test.go

    			server, _ := New(c.ca, time.Duration(1), c.authenticators, multiClusterController)
    
    			var pods []runtime.Object
    			for _, p := range c.pods {
    				pods = append(pods, toPod(p, strings.HasPrefix(p.name, "ztunnel")))
    			}
    			client := kube.NewFakeClient(pods...)
    			stop := test.NewStop(t)
    			multiClusterController.Add("fake", client, stop)
    			client.RunAndWait(stop)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. samples/slack/src/main/java/okhttp3/slack/RtmSession.java

      //                the body from slack is a 0-byte-buffer
      @Override public synchronized void onOpen(WebSocket webSocket, Response response) {
        System.out.println("onOpen: " + response);
      }
    
      // TOOD(jwilson): decode incoming messages and dispatch them somewhere.
      @Override public void onMessage(WebSocket webSocket, String text) {
        System.out.println("onMessage: " + text);
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Nov 19 20:16:58 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver_test.cc

          return %0 : tensor<1x4x4x3xf32>
        }
      }
    )mlir";
    
    // TOOD: b/323478683 - Directly use types rather than creating a `unique_ptr`.
    std::unique_ptr<quant::OpQuantSpec> GetOpQuantSpec(
        const mlir::Operation* op,
        bool disable_per_channel_for_dense_layers = false) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/vet/vet_test.go

    		})
    	}
    
    	// The loopclosure analyzer (aka "rangeloop" before CL 140578)
    	// is a no-op for files whose version >= go1.22, so we use a
    	// go.mod file in the rangeloop directory to "downgrade".
    	//
    	// TOOD(adonovan): delete when go1.21 goes away.
    	t.Run("loopclosure", func(t *testing.T) {
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "vet", "-vettool="+vetPath(t), ".")
    		cmd.Env = append(os.Environ(), "GOWORK=off")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top