Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for SIMPLE (0.13 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

        }
    
        @Test
        @TestMetadata("simple.kt")
        public void testSimple() {
          runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/callableReferences/simple.kt");
        }
    
        @Test
        @TestMetadata("topLevelExtensionFunction.kt")
        public void testTopLevelExtensionFunction() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/resolver/FirStandaloneNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

        }
    
        @Test
        @TestMetadata("simple.kt")
        public void testSimple() {
          runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/callableReferences/simple.kt");
        }
    
        @Test
        @TestMetadata("topLevelExtensionFunction.kt")
        public void testTopLevelExtensionFunction() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.8K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    			Name: name,
    			UID:  types.UID(name),
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    			Volumes:    volumes,
    			Priority:   &priority,
    		},
    	}
    }
    
    // nodeConditionList is a simple alias to support equality checking independent of order
    type nodeConditionList []v1.NodeConditionType
    
    // Equal adds the ability to check equality between two lists of node conditions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    		})
    	}
    }
    
    func TestRunBindPlugins(t *testing.T) {
    	tests := []struct {
    		name       string
    		injects    []framework.Code
    		wantStatus framework.Code
    	}{
    		{
    			name:       "simple success",
    			injects:    []framework.Code{framework.Success},
    			wantStatus: framework.Success,
    		},
    		{
    			name:       "error on second",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      int dim_size = rt.getDimSize(0);
    
      // Worklist to direct partial evaluation.
      SmallVector<ValuePort, 4> worklist;
    
      // Simple evaluator that attempts to partially evaluate the input value even
      // if unable to evaluate the complete output. Below follows a simple stack
      // based evaluation where it queries what operands/part of operands need to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

      }
      func.func @_func(%arg0: tensor<*xi32>, %arg1: tensor<8xi32>, %arg2: tensor<*xi32>, %arg3: tensor<8xi32>) -> tensor<8xi32> {
        func.return %arg1 : tensor<8xi32>
      }
    }
    
    // -----
    
    // Tests simple case of `tf_device.cluster_func` on TPU with single input and
    // single output.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    #
    # The following certificate pairs are created:
    #
    #  - ca (the cluster's certificate authority)
    #  - server
    #  - kubelet
    #  - kubecfg (for kubectl)
    #
    # TODO(roberthbailey): Replace easyrsa with a simple Go program to generate
    # the certs that we need.
    #
    # Assumed vars
    #   KUBE_TEMP
    #   MASTER_NAME
    #
    # Vars set:
    #   CERT_DIR
    #   CA_CERT_BASE64
    #   MASTER_CERT_BASE64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let dependentDialects = ["mlir::tf_executor::TensorFlowExecutorDialect"];
    }
    
    def SimpleTFDeviceAssignmentPass : Pass<"tf-simple-device-assignment", "mlir::func::FuncOp"> {
      let summary = "Simple device assignment in TF dialect.";
      let constructor = "TF::CreateSimpleTFDeviceAssignmentPass()";
      let options = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    					Protocol: ptr.To(v1.ProtocolSCTP),
    				},
    			}
    		}),
    	)
    
    	fp.syncProxyRules()
    
    	runPacketFlowTests(t, getLine(), nft, testNodeIPs, []packetFlowTest{
    		{
    			name:     "simple clusterIP",
    			sourceIP: "10.180.0.2",
    			destIP:   "172.30.0.41",
    			destPort: 80,
    			output:   "10.180.0.1:80",
    			masq:     false,
    		},
    		{
    			name:     "hairpin to cluster IP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    	testcases := []struct {
    		name          string
    		nodeAddresses []v1.NodeAddress
    		criPodIPs     []string
    		podIPs        []v1.PodIP
    	}{
    		{
    			name: "Simple",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top