Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 350 for Combine (0.44 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	if len(profiles) == 1 && len(msrcs) == 1 {
    		return profiles[0], msrcs[0], nil
    	}
    
    	p, err := profile.Merge(profiles)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	// Combine mapping sources.
    	msrc := make(plugin.MappingSources)
    	for _, ms := range msrcs {
    		for m, s := range ms {
    			msrc[m] = append(msrc[m], s...)
    		}
    	}
    	return p, msrc, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        UNSATISFIED_AND_INTERRUPTED_BEFORE_WAITING;
    
        @Override
        public String toString() {
          return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name());
        }
      }
    
      /** Timeout values to combine with each {@link Scenario}. */
      private enum Timeout {
        MIN(Long.MIN_VALUE, "-oo"),
        MINUS_SMALL(-SMALL_TIMEOUT_MILLIS, "-" + SMALL_TIMEOUT_MILLIS + "ms"),
        ZERO(0L, "0ms"),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    Now you can publish the RPM.
    
    If you really want to add an artifact to a publication based on a component, instead of <<#sec:adding-variants-to-existing-components,adjusting the component>> itself, you can combine the `from components.someComponent` and `artifact someArtifact` notations.
    
    [[sec:publishing_maven:conditional_publishing]]
    == Restricting publications to specific repositories
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableRangeSet.java

        public Builder<C> addAll(Iterable<Range<C>> ranges) {
          for (Range<C> range : ranges) {
            add(range);
          }
          return this;
        }
    
        @CanIgnoreReturnValue
        Builder<C> combine(Builder<C> builder) {
          addAll(builder.ranges);
          return this;
        }
    
        /**
         * Returns an {@code ImmutableRangeSet} containing the ranges added to this builder.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    // use.
    const DisableGatewayPortTranslationLabel = "experimental.istio.io/disable-gateway-port-translation"
    
    // MergeGateways combines multiple gateways targeting the same workload into a single logical Gateway.
    // Note that today any Servers in the combined gateways listening on the same port must have the same protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSet.java

            add(elements.next());
          }
          return this;
        }
    
        @CanIgnoreReturnValue
        @SuppressWarnings("unchecked") // ArrayBasedBuilder stores its elements as Object.
        Builder<E> combine(Builder<E> other) {
          if (hashTable != null) {
            for (int i = 0; i < other.size; ++i) {
              // requireNonNull is safe because the first `size` elements are non-null.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    			}
    			localWebhookYAMLReaders = append(localWebhookYAMLReaders, whReaderSource)
    		}
    		parsedK8sObjects = append(parsedK8sObjects, k8sObjects...)
    	}
    
    	sa := local.NewSourceAnalyzer(analysis.Combine("webhook", &webhook.Analyzer{
    		SkipServiceCheck:             true,
    		SkipDefaultRevisionedWebhook: DetectIfTagWebhookIsNeeded(h.iop, exists),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device_test.cc

      TensorHandlePtr size_three(
          VectorFloatTensorHandle(size_three_value, status.get()));
      ASSERT_EQ(TF_GetCode(status.get()), TF_OK) << TF_Message(status.get());
    
      // Try to combine these values into a single parallel tensor.
      std::array<TFE_TensorHandle*, 2> components{size_two.get(), size_three.get()};
      TensorHandlePtr combined_value = CreatePerDeviceValues(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 29.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (MOVBUreg x:(ANDI [c] y)) && c >= 0 && int64(uint8(c)) == c => x
    (MOVHUreg x:(ANDI [c] y)) && c >= 0 && int64(uint16(c)) == c => x
    (MOVWUreg x:(ANDI [c] y)) && c >= 0 && int64(uint32(c)) == c => x
    
    // Combine masking and zero extension.
    (MOVBUreg (ANDI [c] x)) && c < 0 => (ANDI [int64(uint8(c))] x)
    (MOVHUreg (ANDI [c] x)) && c < 0 => (ANDI [int64(uint16(c))] x)
    (MOVWUreg (ANDI [c] x)) && c < 0 => (AND (MOVDconst [int64(uint32(c))]) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  10. src/math/big/nat.go

    		// t collects the products x[i] * x[j] where j < i
    		t[2*i] = addMulVVW(t[i:2*i], x[0:i], d)
    	}
    	t[2*n-1] = shlVU(t[1:2*n-1], t[1:2*n-1], 1) // double the j < i products
    	addVV(z, z, t)                              // combine the result
    	putNat(tp)
    }
    
    // karatsubaSqr squares x and leaves the result in z.
    // len(x) must be a power of 2 and len(z) >= 6*len(x).
    // The (non-normalized) result is placed in z[0 : 2*len(x)].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top