Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for keyname (0.23 sec)

  1. pkg/config/validation/validation.go

    					v = appendErrorf(v, "literal tag value may not be empty")
    				}
    			case *telemetry.Tracing_CustomTag_Header:
    				if t.Header.GetName() == "" {
    					v = appendErrorf(v, "header tag name may not be empty")
    				}
    			case *telemetry.Tracing_CustomTag_Environment:
    				if t.Environment.GetName() == "" {
    					v = appendErrorf(v, "environment tag name may not be empty")
    				}
    			}
    		}
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			time.Sleep(5 * time.Millisecond)
    			if metadata, err := meta.Accessor(obj); err == nil {
    				if len(metadata.GetName()) != 0 {
    					t.Errorf("Unexpected name %q", metadata.GetName())
    				}
    				metadata.SetName(populateName)
    			} else {
    				return nil, err
    			}
    			return obj, nil
    		},
    	}
    
    	ac := &namePopulatorAdmissionControl{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    uration { private org.codehaus.plexus.util.xml.Xpp3Dom dom; public void XmlPlexusConfigurati(String); public void XmlPlexusConfigurati(org.codehaus.plexus.util.xml.Xpp3Dom); public org.codehaus.plexus.util.xml.Xpp3Dom getXpp3Dom(); public String getName(); public String getValue(); public String getValue(String); public void setValue(String); public void setAttribute(String, String); public String getAttribute(String, String); public String getAttribute(String); public String[] getAttributeNames();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    uration { private org.codehaus.plexus.util.xml.Xpp3Dom dom; public void XmlPlexusConfigurati(String); public void XmlPlexusConfigurati(org.codehaus.plexus.util.xml.Xpp3Dom); public org.codehaus.plexus.util.xml.Xpp3Dom getXpp3Dom(); public String getName(); public String getValue(); public String getValue(String); public void setValue(String); public void setAttribute(String, String); public String getAttribute(String, String); public String getAttribute(String); public String[] getAttributeNames();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

     */
    @ElementTypesAreNonnullByDefault
    @GwtCompatible(emulated = true)
    public class FuturesTest extends TestCase {
      private static final Logger aggregateFutureLogger =
          Logger.getLogger(AggregateFuture.class.getName());
      private final TestLogHandler aggregateFutureLogHandler = new TestLogHandler();
    
      private static final String DATA1 = "data";
      private static final String DATA2 = "more data";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

     */
    @ElementTypesAreNonnullByDefault
    @GwtCompatible(emulated = true)
    public class FuturesTest extends TestCase {
      private static final Logger aggregateFutureLogger =
          Logger.getLogger(AggregateFuture.class.getName());
      private final TestLogHandler aggregateFutureLogHandler = new TestLogHandler();
    
      private static final String DATA1 = "data";
      private static final String DATA2 = "more data";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          auto name = attr.getName();
          return name == "call_target_name" || name == "backend_config" ||
                 name == "api_version" || name == "called_computations";
        };
        for (const auto& attr : op->getAttrs()) {
          if (!is_supported_attr_name(attr)) {
            return op.emitOpError()
                   << attr.getName().getValue()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      bool users_same_op = llvm::all_of(op->getUsers(), [&](Operation *user) {
        return user->getName() == first_user->getName();
      });
      if (!users_same_op) return failure();
    
      // Pass unpack operand to unary operation.
      OperationState new_unary_op_state(loc, first_user->getName().getStringRef(),
                                        op.getOperand(), op.getOperand().getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    		g.Expect(rootSdsConfig.GetName()).To(Equal("file-root:/clientRootCertFromNodeMetadata.pem"))
    
    		certSdsConfig := tlsContext.CommonTlsContext.GetTlsCertificateSdsSecretConfigs()
    		g.Expect(certSdsConfig).To(HaveLen(1))
    		g.Expect(certSdsConfig[0].GetName()).To(Equal("file-cert:/clientCertFromNodeMetadata.pem~/clientKeyFromNodeMetadata.pem"))
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	generatedMeta, err := meta.Accessor(generated)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if generatedMeta.GetName() != "prefix-7" {
    		t.Errorf("Expected prefix-7 but got %s", generatedMeta.GetName())
    	}
    
    	// Now that 8 generated names (0..7) are claimed, 8 name generation attempts will not be enough
    	// and create should return an already exists error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top