Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 232 for MULTIPLE (0.13 sec)

  1. src/go/printer/nodes.go

    	"math"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Formatting issues:
    // - better comment formatting for /*-style comments at the end of a line (e.g. a declaration)
    //   when the comment spans multiple lines; if such a comment is just two lines, formatting is
    //   not idempotent
    // - formatting of expression lists
    // - should use blank instead of tab to separate one-line function bodies from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    			clusters: map[string][]string{
    				"inbound|8080||": nil,
    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    			},
    		},
    		{
    			name:     "single service, multiple instance",
    			services: []*model.Service{service},
    			instances: flattenInstances(
    				makeInstances(proxy, service, 80, 8080),
    				makeInstances(proxy, service, 81, 8081)),
    			clusters: map[string][]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/reflect/type.go

    				styp := (*structType)(unsafe.Pointer(ntyp))
    				if nextCount[styp] > 0 {
    					nextCount[styp] = 2 // exact multiple doesn't matter
    					continue
    				}
    				if nextCount == nil {
    					nextCount = map[*structType]int{}
    				}
    				nextCount[styp] = 1
    				if count[t] > 1 {
    					nextCount[styp] = 2 // exact multiple doesn't matter
    				}
    				var index []int
    				index = append(index, scan.index...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	buf *bytes.Buffer
    	id1 cache.ActionID
    	id2 cache.ActionID
    }
    
    // stdoutMu and lockedStdout provide a locked standard output
    // that guarantees never to interlace writes from multiple
    // goroutines, so that we can have multiple JSON streams writing
    // to a lockedStdout simultaneously and know that events will
    // still be intelligible.
    var stdoutMu sync.Mutex
    
    type lockedStdout struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Ensure that all ops are in the same region, and have the same replication
      // info.
      // TODO(bfontain): Allow for multiple regions/loops in one module.
      // TODO(patn): move this pass after cluster formation to remove the
      // complexity with replication info and metadata, cluster checking and
      // generalizing to multiple TPU clusters.
      Region* region = (*forward_pass_ops.begin())->getParentRegion();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "match policy not set with multiple audiences",
    			in:   []string{"audience1", "audience2"},
    			want: `issuer.audienceMatchPolicy: Invalid value: "": audienceMatchPolicy must be MatchAny for multiple audiences`,
    		},
    		{
    			name:        "valid multiple audiences",
    			in:          []string{"audience1", "audience2"},
    			matchPolicy: "MatchAny",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                for (Service candidate : services) {
                    descriptions.add(candidate.getDisplayName());
                }
    
                Formatter formatter = new Formatter();
                formatter.format("Multiple factories for objects of type %s available in %s:", format(type), getDisplayName());
                for (String description : descriptions) {
                    formatter.format("%n   - %s", description);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * this client silently recovers from the following problems:
         *
         * * **Unreachable IP addresses.** If the URL's host has multiple IP addresses,
         *   failure to reach any individual IP address doesn't fail the overall request. This can
         *   increase availability of multi-homed services.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            assertTransformationsExecuted()
    
            where:
            classpathAnnotation << [Classpath, CompileClasspath]
        }
    
        def "transforms with different dependencies in multiple dependency graphs in different projects are executed"() {
            given:
            withColorVariants(mavenHttpRepo.module("org.slf4j", "slf4j-api", "1.7.26")).publish().allowAll()
            createDirs("app2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  10. src/time/time.go

    //
    // Programs using times should typically store and pass them as values,
    // not pointers. That is, time variables and struct fields should be of
    // type [time.Time], not *time.Time.
    //
    // A Time value can be used by multiple goroutines simultaneously except
    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top