Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 9,026 for gives (0.1 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtMultiplatformInfoProvider.kt

    }
    
    public typealias KtMultiplatformInfoProvider = KaMultiplatformInfoProvider
    
    public interface KaMultiplatformInfoProviderMixin : KaSessionMixIn {
    
        /**
         * Gives expect symbol for the actual one if it is available.
         *
         * @return a single expect declaration corresponds to the [KaDeclarationSymbol] on valid code or multiple expects in a case of erroneous code with multiple expects.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. samples/httpbin/sample-client/fortio-deploy.yaml

        metadata:
          annotations:
            # This annotation causes Envoy to serve cluster.outbound statistics via 15000/stats
            # in addition to the stats normally served by Istio. The Circuit Breaking example task
            # gives an example of inspecting Envoy stats via proxy config.
            proxy.istio.io/config: |-
              proxyStatsMatcher:
                inclusionPrefixes:
                - "cluster.outbound"
                - "cluster_manager"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 10 02:32:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue5793.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5793: calling 2-arg builtin with multiple-result f() call expression gives
    // spurious error.
    
    package main
    
    func complexArgs() (float64, float64) {
    	return 5, 7
    }
    
    func appendArgs() ([]string, string) {
    	return []string{"foo"}, "bar"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 793 bytes
    - Viewed (0)
  4. pkg/controller/deployment/rollback.go

    		if rollbackTo.Revision = deploymentutil.LastRevision(logger, allRSs); rollbackTo.Revision == 0 {
    			// If we still can't find the last revision, gives up rollback
    			dc.emitRollbackWarningEvent(d, deploymentutil.RollbackRevisionNotFound, "Unable to find last revision.")
    			// Gives up rollback
    			return dc.updateDeploymentAndClearRollbackTo(ctx, d)
    		}
    	}
    	for _, rs := range allRSs {
    		v, err := deploymentutil.Revision(rs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/image/png/testdata/pngsuite/README

    The *.png and README.original files in this directory are copied from
    libpng.org, specifically contrib/pngsuite/* in libpng 1.6.26.
    
    README.original gives the following license for those files:
    
    	Permission to use, copy, and distribute these images for any purpose
    	and without fee is hereby granted.
    
    The files basn0g01-30.png, basn0g02-29.png and basn0g04-31.png are in fact not
    part of pngsuite but were created from files in pngsuite. Their non-power-of-2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 02:10:13 UTC 2016
    - 1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MetadataFileSource.java

    /**
     * This module source stores information about the metadata file
     * from which a module resolve metadata has been built. In particular,
     * it stores the artifact id corresponding to the metadata file and
     * gives access to the file stored in the local artifact cache.
     *
     * This information is used during dependency verification (either
     * writing or validating).
     */
    public interface MetadataFileSource extends PersistentModuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/capabilities/CapabilitiesMetadata.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.capabilities;
    
    import java.util.List;
    
    /**
     * Gives access to the list of capabilities of a component.
     *
     * @since 4.7
     */
    public interface CapabilitiesMetadata {
        /**
         * Returns an immutable view of the capabilities.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 977 bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/configuration/HelpTest.groovy

    class HelpTest extends AbstractProjectBuilderSpec {
        Help helpTask
    
        def setup() {
            helpTask = project.tasks.create("somehelp", Help.class)
        }
    
        def "gives decent error message for unknown tasks"() {
            when:
            helpTask.setTaskPath("notexisting")
            helpTask.displayHelp()
            then:
            def e = thrown(TaskSelectionException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 15 07:22:20 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/serving.go

    // Package options contains flags and options for initializing kube-apiserver
    package options
    
    import (
    	genericoptions "k8s.io/apiserver/pkg/server/options"
    	netutils "k8s.io/utils/net"
    )
    
    // NewSecureServingOptions gives default values for the kube-apiserver which are not the options wanted by
    // "normal" API servers running on the platform
    func NewSecureServingOptions() *genericoptions.SecureServingOptionsWithLoopback {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.h

    // Returns QuantizationOptions filled with detailed specs when user specifies
    // an optional preset method name. The preset methods are defined in
    // quantization_options.proto. This function will only be executed if a user
    // gives a preset method, not a custom method.
    QuantizationOptions FillPresetQuantizationOptions(
        QuantizationOptions quantization_options);
    
    // Returns LogicalResult depending on the look up of activation bit width in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 07:43:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top