Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for retractions (0.2 sec)

  1. cmd/xl-storage_test.go

    	"fmt"
    	"io"
    	"net/url"
    	"os"
    	slashpath "path"
    	"runtime"
    	"strings"
    	"syscall"
    	"testing"
    
    	"github.com/google/uuid"
    )
    
    func TestCheckPathLength(t *testing.T) {
    	// Check path length restrictions are not same on windows/darwin
    	if runtime.GOOS == "windows" || runtime.GOOS == "darwin" {
    		t.Skip()
    	}
    
    	testCases := []struct {
    		path        string
    		expectedErr error
    	}{
    		{".", errFileAccessDenied},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("version"), spec.Version, "must match the first version in spec.versions"))
    		}
    	}
    
    	// in addition to the basic name restrictions, some names are required for spec, but not for status
    	if len(spec.Names.Plural) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("names", "plural"), ""))
    	}
    	if len(spec.Names.Singular) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. src/time/time.go

    		qmod2 = int(sec/d1) & 1
    		r = Duration(sec%d1)*Second + Duration(nsec)
    
    	// General case.
    	// This could be faster if more cleverness were applied,
    	// but it's really only here to avoid special case restrictions in the API.
    	// No one will care about these cases.
    	default:
    		// Compute nanoseconds as 128-bit number.
    		sec := uint64(sec)
    		tmp := (sec >> 32) * 1e9
    		u1 := tmp >> 32
    		u0 := tmp << 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     ** `ProviderFactory.property(Class)`
     * Tasks configured and registered with the <<task_configuration_avoidance#sec:task_configuration_avoidance_migration_guidelines,task configuration avoidance>> APIs have more restrictions on the other methods that can be called from a configuration action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    func (c *gcControllerState) commit(isSweepDone bool) {
    	if !c.test {
    		assertWorldStoppedOrLockHeld(&mheap_.lock)
    	}
    
    	if isSweepDone {
    		// The sweep is done, so there aren't any restrictions on the trigger
    		// we need to think about.
    		c.sweepDistMinTrigger.Store(0)
    	} else {
    		// Concurrent sweep happens in the heap growth
    		// from gcController.heapLive to trigger. Make sure we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Namespace API objects are cluster-scoped.
    	// "Namespaced" means that only namespaced resources will match this rule.
    	// "*" means that there are no scope restrictions.
    	// Subresources match the scope of their parent resource.
    	// Default is "*".
    	//
    	// +optional
    	Scope *ScopeType `json:"scope,omitempty" protobuf:"bytes,4,rep,name=scope"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    For more complex cases a custom link:{javadocPath}/org/gradle/api/provider/ValueSource.html[ValueSource] implementation with injected `ExecOperations` can be used.
    This `ExecOperations` instance can be used at configuration time without restrictions.
    
    ====
    include::sample[dir="snippets/valueProviders/externalProcessValueSource/kotlin",files="build.gradle.kts[tags=value-source]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. src/reflect/type.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"strconv"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    	"unsafe"
    )
    
    // Type is the representation of a Go type.
    //
    // Not all methods apply to all kinds of types. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of type before
    // calling kind-specific methods. Calling a method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top