Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for decref (0.16 sec)

  1. src/cmd/trace/testdata/go122.test

    String id=138
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unixjs.go"
    String id=139
    	data="internal/poll.(*FD).destroy"
    String id=140
    	data="internal/poll.(*FD).decref"
    String id=141
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_mutex.go"
    String id=142
    	data="internal/poll.(*FD).Close"
    String id=143
    	data="net.(*netFD).Close"
    String id=144
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  2. go.sum

    github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
    github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    				t.Errorf("unexpected number of failed pods. Expected %d, saw %d\n", tc.wantStatusFailed, actual.Status.Failed)
    			}
    			if ptr.Deref(actual.Status.Terminating, 0) != ptr.Deref(tc.wantStatusTerminating, 0) {
    				t.Errorf("unexpected number of terminating pods. Expected %d, saw %d\n", ptr.Deref(tc.wantStatusTerminating, 0), ptr.Deref(actual.Status.Terminating, 0))
    			}
    		})
    	}
    }
    
    func TestSyncJobWithJobSuccessPolicy(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    type mockDiskInfoProvider struct {
    	dedicatedImageFs *bool
    }
    
    // HasDedicatedImageFs returns the mocked value
    func (m *mockDiskInfoProvider) HasDedicatedImageFs(_ context.Context) (bool, error) {
    	return ptr.Deref(m.dedicatedImageFs, false), nil
    }
    
    // mockDiskGC is used to simulate invoking image and container garbage collection.
    type mockDiskGC struct {
    	err                  error
    	imageGCInvoked       bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    	}
    
    	for _, cas := range testcases {
    		v := cas.value
    		if cas.deref {
    			v = v.Elem()
    		}
    		got := v.Comparable()
    		if got != cas.comparable {
    			t.Errorf("%T.Comparable = %t, want %t", v, got, cas.comparable)
    		}
    	}
    }
    
    type ValueEqualTest struct {
    	v, u           any
    	eq             bool
    	vDeref, uDeref bool
    }
    
    var equalI interface{} = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"['a', ?optional.of('v'), 'c'] == ['a', 'v', 'c']",
    			},
    			errors: map[string]string{
    				"self.absentObj.?absentStr == optional.none()": "no such key: absentObj", // missing ?. operator on first deref is an error
    			},
    		},
    		{name: "quantity",
    			obj:    objs("20", "200M"),
    			schema: schemas(stringType, stringType),
    			valid: []string{
    				"isQuantity(self.val1)",
    				"isQuantity(self.val2)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top