Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for makedev (0.17 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	if err != nil {
    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    
    	expectedSet := makeSet([]*v1.Pod{medPriorityPodInfo.Pod, unschedulablePodInfo.Pod, highPriorityPodInfo.Pod})
    	gotPods, gotSummary := q.PendingPods()
    	if diff := cmp.Diff(expectedSet, makeSet(gotPods)); diff != "" {
    		t.Errorf("Unexpected list of pending Pods (-want, +got):\n%s", diff)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    			})
    		}
    	}
    }
    
    type vmCase struct {
    	name string
    	from echo.Instance
    	to   echo.Instances
    	host string
    }
    
    func DNSTestCases(t TrafficContext) {
    	makeSE := func(ips ...string) string {
    		return tmpl.MustEvaluate(`
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: dns
    spec:
      hosts:
      - "fake.service.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

      if (num_dims != -1) {
        std::vector<tensorflow::shape_inference::DimensionHandle> dim_vec;
        dim_vec.reserve(num_dims);
        for (int i = 0; i < num_dims; ++i) {
          dim_vec.push_back(ic->MakeDim(dims[i]));
        }
        return ic->MakeShape(dim_vec);
      } else {
        return ic->UnknownShape();
      }
    }
    
    }  // namespace
    
    void TF_GraphSetOutputHandleShapesAndTypes(TF_Graph* graph, TF_Output output,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                LLVM_DEBUG(llvm::dbgs() << "Unexpected number of elements\n");
                return {};
              }
              int64_t val = (*dea.getValues<APInt>().begin()).getSExtValue();
              dims[i] = ic->MakeDim(val);
            }
          }
        }
      }
      return ic->MakeShape(dims);
    }
    
    bool ShapeInference::ForceTypeForPassThroughOperands(Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top