Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for ARE (0.03 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertTrue(future2.set(2L));
        // Second check to ensure the input future was not cancelled
        assertEquals((Long) 2L, getDone(future2));
    
        // All futures are now complete; outstanding inputs are cancelled
        assertTrue(future3.isCancelled());
        assertTrue(future3.wasInterrupted());
      }
    
      @AndroidIncompatible // runs out of memory under some versions of the emulator
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertTrue(future2.set(2L));
        // Second check to ensure the input future was not cancelled
        assertEquals((Long) 2L, getDone(future2));
    
        // All futures are now complete; outstanding inputs are cancelled
        assertTrue(future3.isCancelled());
        assertTrue(future3.wasInterrupted());
      }
    
      @AndroidIncompatible // runs out of memory under some versions of the emulator
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    										},
    									},
    								},
    							},
    						},
    					},
    				},
    				RequireClientCertificate: proto.BoolFalse,
    			},
    		},
    		{
    			// Credential name and subject names are specified, SDS configs are generated for fetching
    			// key/cert and root cert.
    			name: "credential name subject alternative name key and cert tls MUTUAL",
    			server: &networking.Server{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    				},
    			},
    			expectedPodReadyToStartContainersCondition: v1.PodCondition{
    				Type:   v1.PodReadyToStartContainers,
    				Status: v1.ConditionTrue,
    			},
    		},
    		{
    			name: "reason and message are preserved when phase doesn't change",
    			pod: &v1.Pod{
    				Spec: desiredState,
    				Status: v1.PodStatus{
    					Phase: v1.PodRunning,
    					ContainerStatuses: []v1.ContainerStatus{
    						waitingState("containerA"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    	time.Sleep(2 * time.Second)
    
    	// Sources are not ready yet. Don't remove any pods.
    	if expect, actual := []types.UID(nil), kubelet.podWorkers.(*fakePodWorkers).triggeredDeletion; !reflect.DeepEqual(expect, actual) {
    		t.Fatalf("expected %v kills, got %v", expect, actual)
    	}
    
    	ready = true
    	kubelet.HandlePodRemoves(pods)
    	time.Sleep(2 * time.Second)
    
    	// Sources are ready. Remove unwanted pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        std::vector<int64_t> zero_points = {qtype.getZeroPoint()};
        q_params = tflite::CreateQuantizationParameters(
            // min and max values are not stored in the quantized type from MLIR, so
            // both are set to 0 in the flatbuffer when they are exported.
            builder_, /*min=*/0, /*max=*/0, builder_.CreateVector<float>(scales),
            builder_.CreateVector<int64_t>(zero_points));
      } else if (auto qtype =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

      }
      func.func @tpu0_func(%arg0: tensor<8xi32>) -> tensor<8xi32> {
        func.return %arg0 : tensor<8xi32>
      }
    }
    
    
    // -----
    
    // Tests that inputs are inputs with maximal and replicate sharding are set
    // properly for replicated model parallelism.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				t.Fatalf("%v: Expected %#v, got %#v", name, e, a)
    			}
    		})
    	}
    }
    
    // TestStoreListResourceVersion tests that if List with ResourceVersion > 0, it will wait until
    // the results are as fresh as given version.
    func TestStoreListResourceVersion(t *testing.T) {
    	fooPod := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    	{as: obj.APCALIGN, a1: C_32CON, type_: 0, size: 0}, // align code
    }
    
    // These are opcodes above which may generate different sequences depending on whether prefix opcode support
    // is available
    type PrefixableOptab struct {
    	Optab
    	minGOPPC64 int  // Minimum GOPPC64 required to support this.
    	pfxsize    int8 // Instruction sequence size when prefixed opcodes are used
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status_test.go

    					},
    				},
    			},
    			needsUpdate: false,
    		}, {
    			name: "update needed when capacity and allocatable of the existing node are nil and capacity and allocatable of the initial node are not nil",
    			initialNode: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity: v1.ResourceList{
    						v1.ResourceCPU:              *resource.NewMilliQuantity(2000, resource.DecimalSI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top