Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for putrefy (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	}
    	span.AddEvent("Txn call succeeded")
    
    	if !txnResp.Succeeded {
    		return storage.NewKeyExistsError(preparedKey, 0)
    	}
    
    	if out != nil {
    		putResp := txnResp.Responses[0].GetResponsePut()
    		err = decode(s.codec, s.versioner, data, out, putResp.Header.Revision)
    		if err != nil {
    			span.AddEvent("decode failed", attribute.Int("len", len(data)), attribute.String("err", err.Error()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Used for declaring implementation dependencies for all variants of the main component (see <<sec:swift_library_api_vs_implementation,API vs implementation section>>).
    This is where you should declare dependencies which are purely internal and not meant to be exposed to consumers of any variants.
    
    `main__Variant__Implementation` (e.g. `mainDebugImplementation` and `mainReleaseImplementation`) extends `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                }
    
                if (!plugin.isExtensions()
                        && artifacts.size() == 1
                        && artifacts.get(0).getFile() != null) {
                    /*
                     * This is purely for backward-compat with 2.x where <extensions> consisting of a single artifact where
                     * loaded into the core and hence available to plugins, in contrast to bigger extensions that were
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

     * latest strategy nor a ivy instance is set, an IllegalStateException will be thrown when calling
     * accept(). Note that it can't work with latest time strategy, cause no time is known for the
     * limits of the range. Therefore only purely revision based LatestStrategy can be used.
     */
    public class VersionRangeSelector extends AbstractVersionVersionSelector {
        private static final String OPEN_INC = "[";
    
        private static final String OPEN_EXC = "]";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    Used for declaring implementation dependencies for all variants of the main component (see <<sec:cpp_library_api_vs_implementation,API vs implementation section>>).
    This is where you should declare dependencies which are purely internal and not meant to be exposed to consumers of any variants.
    
    `main__Variant__Implementation` (e.g. `mainDebugImplementation` and `mainReleaseImplementation`) extends `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. src/path/filepath/path.go

    	"io/fs"
    	"os"
    	"slices"
    )
    
    const (
    	Separator     = os.PathSeparator
    	ListSeparator = os.PathListSeparator
    )
    
    // Clean returns the shortest path name equivalent to path
    // by purely lexical processing. It applies the following rules
    // iteratively until no further processing can be done:
    //
    //  1. Replace multiple [Separator] elements with a single one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	}
    	return data, p.err
    }
    
    func (p *PrefixTransformer) GetReadsAndReset() uint64 {
    	return atomic.SwapUint64(&p.reads, 0)
    }
    
    // reproducingTransformer is a custom test-only transformer used purely
    // for testing consistency.
    // It allows for creating predefined objects on TransformFromStorage operations,
    // which allows for precise in time injection of new objects in the middle of
    // read operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  8. pkg/registry/rbac/validation/rule.go

    	// PolicyRules may not be complete, but it contains all retrievable rules.  This is done because policy rules are purely additive and policy determinations
    	// can be made on the basis of those rules that are found.
    	RulesFor(user user.Info, namespace string) ([]rbacv1.PolicyRule, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
  9. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

    #include "tensorflow/c/eager/c_api_experimental.h"
    #include "tensorflow/core/platform/test.h"
    
    // NOTE(allenl): These tests currently go through TFE_Execute and so are
    // integration testing rather than purely testing the parallel device. They
    // correspond fairly well to the implementation, but testing the C++ directly is
    // another option.
    
    namespace tensorflow {
    namespace parallel_device {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 15:44:44 UTC 2021
    - 12.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/ConsoleConfigurationReportRenderer.java

                .filter(spec::isPurelyCorrectType)
                .collect(Collectors.toList());
            if (nonLegacyConfigs.isEmpty()) {
                message("There are no purely " + spec.getReportedConfigurationDirection() + " " + spec.getReportedTypeAlias() + "s present in project '" + data.getProjectName() + "'.");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:17:12 UTC 2022
    - 18.3K bytes
    - Viewed (0)
Back to top