Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for statx (0.06 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    		ds2 := *ds
    		ds2.DeletionTimestamp = nil
    		err = manager.dsStore.Add(&ds2)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// The existence of a matching orphan should block all actions in this state.
    		pod := newPod("pod1-", "node-0", simpleDaemonSetLabel, nil)
    		err = manager.podStore.Add(pod)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    		// HPA Spec arguments
    		specMinReplicas int32
    		specMaxReplicas int32
    		scaleUpRules    *autoscalingv2.HPAScalingRules
    		scaleDownRules  *autoscalingv2.HPAScalingRules
    		// external world state
    		currentReplicas              int32
    		prenormalizedDesiredReplicas int32
    		// test expected result
    		expectedReplicas  int32
    		expectedCondition string
    
    		testThis bool
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Calling cmpstring a second time with the same arguments in the
    // same memory state can reuse the results of the first call.
    // See issue 61725.
    // Note that this could pretty easily generalize to any pure function.
    (SelectN [0] (StaticLECall {f} x y (SelectN [1] c:(StaticLECall {g} x y mem))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    		bucketName string
    		objectName string
    		accessKey  string
    		secretKey  string
    		// expected output.
    		expectedRespStatus int // expected response status body.
    	}{
    		// Test case - 1.
    		// Fetching stat info of object and validating it.
    		{
    			bucketName:         bucketName,
    			objectName:         objectName,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // Running 'go clean -fuzzcache' removes all cached fuzzing values.
    // This may make fuzzing less effective, temporarily.
    //
    // The GODEBUG environment variable can enable printing of debugging
    // information about the state of the cache:
    //
    // GODEBUG=gocacheverify=1 causes the go command to bypass the
    // use of any cache entries and instead rebuild everything and check
    // that the results match existing cache entries.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    	case REG_TR + 6:
    		return Ytr6
    	case REG_TR + 7:
    		return Ytr7
    	}
    
    	return Yxxx
    }
    
    // AsmBuf is a simple buffer to assemble variable-length x86 instructions into
    // and hold assembly state.
    type AsmBuf struct {
    	buf      [100]byte
    	off      int
    	rexflag  int
    	vexflag  bool // Per inst: true for VEX-encoded
    	evexflag bool // Per inst: true for EVEX-encoded
    	rep      bool
    	repn     bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    package ppc64
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"math"
    	"math/bits"
    	"sort"
    )
    
    // ctxt9 holds state while assembling a single function.
    // Each function gets a fresh ctxt9.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt9 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    // where the server replies before the request has been fully
    // written. We still honor that reply (see TestIssue3595), but don't
    // send future requests on the connection because it's then in a
    // questionable state.
    // golang.org/issue/7569
    func TestTransportNoReuseAfterEarlyResponse(t *testing.T) {
    	run(t, testTransportNoReuseAfterEarlyResponse, []testMode{http1Mode}, testNotParallel)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    // THE SOFTWARE.
    
    package arm64
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"fmt"
    	"log"
    	"math"
    	"sort"
    	"strings"
    )
    
    // ctxt7 holds state while assembling a single function.
    // Each function gets a fresh ctxt7.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt7 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top