Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for need (0.08 sec)

  1. samples/bookinfo/src/productpage/productpage.py

    #
    # Although Istio proxies are able to automatically send spans, they need some
    # hints to tie together the entire trace. Applications need to propagate the
    # appropriate HTTP headers so that when the proxies send span information, the
    # spans can be correlated correctly into a single trace.
    #
    # To do this, an application needs to collect and propagate headers from the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      TPUCompileMetadataProto metadata_proto;
      // Configure metadata requires parsing the module and if we are testing a
      // failure, we ignore this particular set up error assuming we'll not get
      // far enough to need valid metadata.
      tensorflow::tf2xla::internal::ConfigureMetadata(mlir_module_str, arg_shapes,
                                                      metadata_proto)
          .IgnoreError();
      bool use_tuple_args = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            AdditionalClasspath filtered = filterAdditionalClasspath(classpath, modulepath, unfiltered);
    
            // The test's runtimeClasspath already includes the test framework's implementation modules.
            // No need to load anything extra ourselves.
            if (filtered.isEmpty()) {
                return new ForkedTestClasspath(
                    ImmutableList.copyOf(classpath), ImmutableList.copyOf(modulepath),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. cmd/batch-expire.go

    	if err := api.Walk(ctx, r.Bucket, r.Prefix, results, WalkOptions{
    		Marker:       lastObject,
    		LatestOnly:   false, // we need to visit all versions of the object to implement purge: retainVersions
    		VersionsSort: WalkVersionsSortDesc,
    	}); err != nil {
    		// Do not need to retry if we can't list objects on source.
    		return err
    	}
    
    	// Goroutine to periodically save batch-expire job's in-memory state
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. cmd/bucket-handlers_test.go

    	// HTTP request for testing when `objectLayer` is set to `nil`.
    	// There is no need to use an existing bucket and valid input for creating the request
    	// since the `objectLayer==nil`  check is performed before any other checks inside the handlers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

                firSymbol.backingFieldSymbol?.let { builder.callableBuilder.buildBackingFieldSymbol(it) }
            }
    
        // NB: `field` in accessors indicates the property should have a backing field. To see that, though, we need BODY_RESOLVE.
        override val hasBackingField: Boolean
            get() = withValidityAssertion {
                firSymbol.lazyResolveToPhase(FirResolvePhase.BODY_RESOLVE)
                firSymbol.fir.hasBackingField
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. cmd/erasure-multipart.go

    		}
    		break
    	}
    
    	for i := range uploadIDs {
    		uploadIDs[i] = strings.TrimSuffix(uploadIDs[i], SlashSeparator)
    	}
    
    	// S3 spec says uploadIDs should be sorted based on initiated time, we need
    	// to read the metadata entry.
    	var uploads []MultipartInfo
    
    	populatedUploadIDs := set.NewStringSet()
    
    	for _, uploadID := range uploadIDs {
    		if populatedUploadIDs.Contains(uploadID) {
    			continue
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. pilot/pkg/features/pilot.go

    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    	EnableK8SServiceSelectWorkloadEntries = env.RegisterBoolVar("PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES", true,
    		"If enabled, Kubernetes services with selectors will select workload entries with matching labels. "+
    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

     * properties are computed from the given [PsiClass] instead of [firSymbol]. This improves performance when "slow" properties don't need to
     * be accessed.
     */
    internal class KaFirPsiJavaClassSymbol(
        override val psi: PsiClass,
        override val analysisSession: KaFirSession,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // if unable to evaluate the complete output. Below follows a simple stack
      // based evaluation where it queries what operands/part of operands need to
      // be evaluated and attempting to partially evaluate those operands. It does
      // so by pushing the operands that need to be required on to the worklist
      // before enqueuing the operation requiering those values.
      std::vector<DimensionHandle> dims(dim_size, ic->UnknownDim());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top