Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for name12 (0.28 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            return this;
        }
    
        public StandardJavadocDocletOptions docFilesSubDirs() {
            return docFilesSubDirs(true);
        }
    
        /**
         * -excludedocfilessubdir name1:name2...
         */
        @Nullable @Optional @Input
        public List<String> getExcludeDocFilesSubDir() {
            return excludeDocFilesSubDir.getValue();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/proxy_dependencies_test.go

    			configs: sets.New(model.ConfigKey{Kind: k, Name: name, Namespace: nsName}),
    			want:    true,
    		}, Case{ // invalid name
    			name:    fmt.Sprintf("%s unmatched config for sidecar", k.String()),
    			proxy:   sidecar,
    			configs: sets.New(model.ConfigKey{Kind: k, Name: name + invalidNameSuffix, Namespace: nsName}),
    			want:    false,
    		})
    	}
    
    	sidecarNamespaceScopeTypes := []kind.Kind{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/jar_test.go

    	// Serialize non-expired entries in the form "name1=val1 name2=val2".
    	var cs []string
    	for _, submap := range jar.entries {
    		for _, cookie := range submap {
    			if !cookie.Expires.After(now) {
    				continue
    			}
    
    			v := cookie.Value
    			if strings.ContainsAny(v, " ,") || cookie.Quoted {
    				v = `"` + v + `"`
    			}
    			cs = append(cs, cookie.Name+"="+v)
    		}
    	}
    	slices.Sort(cs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    		if len(resources) > 1 {
    			names := []string{}
    			names = append(names, args[1:]...)
    			newArgs := []string{}
    			for _, resource := range resources {
    				for _, name := range names {
    					newArgs = append(newArgs, strings.Join([]string{resource, name}, "/"))
    				}
    			}
    			return newArgs
    		}
    	}
    	return args
    }
    
    // splitResourceTypeName handles type/name resource formats and returns a resource tuple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. pkg/kube/krt/collection_test.go

    		bars := krt.Fetch(ctx, configMaps, krt.FilterLabel(lblBar))
    		names := slices.Map(foos, func(f *corev1.ConfigMap) string { return f.Name })
    		names = append(names, slices.Map(bars, func(f *corev1.ConfigMap) string { return f.Name })...)
    		names = slices.Sort(names)
    		return &Result{
    			Named:   NewNamed(i),
    			Configs: slices.Sort(names),
    		}
    	})
    
    	assert.Equal(t, fetcherSorted(Results)(), nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device.h

        se::Platform* platform = nullptr;
    
        // The device name's prefix (e.g., "/task:7")
        string device_name_prefix;
    
        // The name of the XLA device (e.g., "XLA_CPU")
        string device_name;
    
        // The number of the device.
        int device_ordinal = -1;
    
        // The name of the compilation device (e.g., "XLA_CPU_JIT");
        string compilation_device_name;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. tests/update_test.go

    	if err := DB.Table("users").Where("1 = 1").Update("name", DB.Table("companies").Select("name").Where("companies.id = users.company_id")).Error; err != nil {
    		t.Errorf("failed to update with sub query, got error %v", err)
    	}
    
    	DB.First(&result, user.ID)
    	if result.Name != "new company name" {
    		t.Errorf("name should be %v, but got %v", user.Company.Name, result.Name)
    	}
    }
    
    func TestIdempotentSave(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    throw new UnknownHostException( name.name );
                }
    
                if( response.received && response.resultCode == 0 ) {
                    return response.addrEntry;
                }
            } while( --n > 0 && request.isBroadcast );
    
            throw new UnknownHostException( name.name );
        }
        NbtAddress getByName( Name name, InetAddress addr )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  9. cmd/global-heal.go

    				if wildcard.Match("buckets/*/.metacache/*", entry.name) {
    					return
    				}
    				if wildcard.Match("tmp/.trash/*", entry.name) {
    					return
    				}
    				if wildcard.Match("multipart/*", entry.name) {
    					return
    				}
    			}
    
    			// erasureObjects layer needs object names to be encoded
    			encodedEntryName := encodeDirObject(entry.name)
    
    			var result healEntryResult
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/net/udpsock.go

    //
    // The network must be a UDP network name.
    //
    // If the host in the address parameter is not a literal IP address or
    // the port is not a literal port number, ResolveUDPAddr resolves the
    // address to an address of UDP end point.
    // Otherwise, it parses the address as a pair of literal IP address
    // and port number.
    // The address parameter can use a host name, but this is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top