Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 372 for Tdname (0.15 sec)

  1. pkg/apis/resource/validation/validation_resourceslice_test.go

    			slice:        testResourceSlice("", goodName, driverName),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/Name.java

        public String name, scope;
        public int hexCode;
        int srcHashCode; /* srcHashCode must be set by name resolution
                          * routines before entry into addressCache
                          */
    
        Name() {
        }
        public Name( String name, int hexCode, String scope ) {
            if( name.length() > 15 ) {
                name = name.substring( 0, 15 );
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/printers/name.go

    )
    
    // NamePrinter is an implementation of ResourcePrinter which outputs "resource/name" pair of an object.
    type NamePrinter struct {
    	// ShortOutput indicates whether an operation should be
    	// printed along side the "resource/name" pair for an object.
    	ShortOutput bool
    	// Operation describes the name of the action that
    	// took place on an object, to be included in the
    	// finalized "successful" message.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 28 23:24:54 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  4. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    			parameters:   testResourceClaimParameters("", goodName, goodRequests),
    		},
    		"missing-namespace": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "namespace"), "")},
    			parameters:   testResourceClaimParameters(goodName, "", goodRequests),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/net_darwin.go

    func libresolv_res_9_nsearch_trampoline()
    
    func ResNsearch(state *ResState, dname *byte, class, typ int, ans *byte, anslen int) (int, error) {
    	r1, _, errno := syscall_syscall6(abi.FuncPCABI0(libresolv_res_9_nsearch_trampoline),
    		uintptr(unsafe.Pointer(state)),
    		uintptr(unsafe.Pointer(dname)),
    		uintptr(class),
    		uintptr(typ),
    		uintptr(unsafe.Pointer(ans)),
    		uintptr(anslen))
    	if errno != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 13:41:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactory.java

        @Override
        public ModuleIdentifier module(String group, String name) {
            Map<String, ModuleIdentifier> byName = groupIdToModules.get(group);
            if (byName == null) {
                byName = groupIdToModules.computeIfAbsent(group, k -> new ConcurrentHashMap<>());
            }
            ModuleIdentifier moduleIdentifier = byName.get(name);
            if (moduleIdentifier == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_invalid_path.txt

    go get example.com/dotname/.dot
    go get example.com/dotname/use
    go mod tidy
    
    -- mod/go.mod --
    
    -- mod/foo.go --
    package foo
    
    -- m'd/foo.go --
    package mad
    
    -- badname/go.mod --
    
    module .\.
    
    -- badname/foo.go --
    package badname
    
    -- dotname/go.mod --
    module example.com/dotname
    
    go 1.16
    -- dotname/.dot/dot.go --
    package dot
    -- dotname/use/use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        override
        fun asName(): String =
            "${type.displayName} - ${os.asName()}${if (withoutDependencies) " without dependencies" else ""}"
    
        override
        fun channel() =
            "${type.channel}${if (os == Os.LINUX) "" else "-${os.name.lowercase(Locale.US)}"}-%teamcity.build.branch%"
    }
    
    data class FlameGraphGeneration(
        private val uuid: Int,
        private val name: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
     "__inputs": [
        { 
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
          "description": "",
          "type": "datasource",
          "pluginId": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/certlist_test.go

    				}
    				if cert.CAName == "" {
    					lastCA = cert
    				} else {
    					if cert.CAName != lastCA.Name {
    						t.Fatalf("expected CA name %q, got %q, for certificate %q", lastCA.Name, cert.CAName, cert.Name)
    					}
    				}
    			}
    		})
    	}
    }
    
    func TestCAPointersValid(t *testing.T) {
    	tests := []struct {
    		certs Certificates
    		name  string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top