Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for getNames (0.17 sec)

  1. pilot/pkg/networking/core/route/route.go

    			ttl = cookie.GetTtl()
    		}
    		return &route.RouteAction_HashPolicy{
    			PolicySpecifier: &route.RouteAction_HashPolicy_Cookie_{
    				Cookie: &route.RouteAction_HashPolicy_Cookie{
    					Name: cookie.GetName(),
    					Ttl:  ttl,
    					Path: cookie.GetPath(),
    				},
    			},
    		}
    	case *networking.LoadBalancerSettings_ConsistentHashLB_UseSourceIp:
    		return &route.RouteAction_HashPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/replica_calculator_test.go

    		}
    
    		assert.Equal(t, tc.metric.name, getForAction.GetMetricName(), "the metric requested should have matched the one specified")
    
    		if getForAction.GetName() == "*" {
    			metrics := cmapi.MetricValueList{}
    
    			// multiple objects
    			assert.Equal(t, "pods", getForAction.GetResource().Resource, "the type of object that we requested multiple metrics for should have been pods")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          t_operands.push_back(forward_res[res.getResultNumber()]);
        } else {
          core_tpu_caller->emitOpError() << "Unknown op source for operand "
                                         << operand << ": " << src->getName();
          return LogicalResult::failure();
        }
      }
      return LogicalResult::success();
    }
    
    LogicalResult MakeBackwardOperands(Operation* forward_caller,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set_test.go

    		switch action := a.(type) {
    		case core.GetAction:
    			gets++
    			// Make sure the get is for the right ReplicaSet even though the update failed.
    			if action.GetName() != rs.Name {
    				t.Errorf("Expected get for ReplicaSet %v, got %+v instead", rs.Name, action.GetName())
    			}
    		case core.UpdateAction:
    			updates++
    			// Confirm that the update has the right status.Replicas even though the Get
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    }
    
    // Deprecated: Use Service.ProtoReflect.Descriptor instead.
    func (*Service) Descriptor() ([]byte, []int) {
    	return file_workloadapi_workload_proto_rawDescGZIP(), []int{1}
    }
    
    func (x *Service) GetName() string {
    	if x != nil {
    		return x.Name
    	}
    	return ""
    }
    
    func (x *Service) GetNamespace() string {
    	if x != nil {
    		return x.Namespace
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				patchedPodNames.Insert(action.(clienttesting.PatchAction).GetName())
    				return true, nil, nil
    			})
    			client.PrependReactor("delete", "pods", func(action clienttesting.Action) (bool, runtime.Object, error) {
    				deletedPodNames.Insert(action.(clienttesting.DeleteAction).GetName())
    				return true, nil, nil
    			})
    
    			logger, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                String msg = e.getMessage();
                if (msg == null || msg.isEmpty()) {
                    // NOTE: There's java.nio.charset.MalformedInputException and sun.io.MalformedInputException
                    if (e.getClass().getName().endsWith("MalformedInputException")) {
                        msg = "Some input bytes do not match the file encoding.";
                    } else {
                        msg = e.getClass().getSimpleName();
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            }
          } else if (auto einsum = llvm::isa<TF::EinsumOp>(op)) {
            if (IsInCompsiteFunction(op)) return;
            // Leftover Einsum ops are always non-quantized.
            auto op_name = op->getName().stripDialect();
            func_count_map[op_name].num_float++;
          }
        });
    
        // Pad string to a certain size to format the table. Space is preferred to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                        project.getTasks().register("broken", t -> {
                            t.doLast(t2 -> {
                                System.out.println(t2.getProject().getName());
                            });
                        });
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	patch.SetName(a.name)
    	patch.SetNamespace("default")
    
    	_, err := ctx.DynamicClient.
    		Resource(a.gvr).
    		Namespace(patch.GetNamespace()).
    		Apply(
    			context.TODO(),
    			patch.GetName(),
    			patch,
    			metav1.ApplyOptions{
    				FieldManager: "manager",
    			})
    
    	return err
    
    }
    
    func (a applyPatchOperation) Description() string {
    	return a.description
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top