Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for NIL (0.03 sec)

  1. test/nil.go

    // Test nil.
    
    package main
    
    import (
    	"fmt"
    	"time"
    )
    
    type T struct {
    	i int
    }
    
    type IN interface{}
    
    func main() {
    	var i *int
    	var f *float32
    	var s *string
    	var m map[float32]*int
    	var c chan int
    	var t *T
    	var in IN
    	var ta []IN
    
    	i = nil
    	f = nil
    	s = nil
    	m = nil
    	c = nil
    	t = nil
    	i = nil
    	ta = make([]IN, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 2.2K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/allow-nil-rule-in.yaml

    Yangmin Zhu <******@****.***> 1617305101 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 182 bytes
    - Viewed (0)
  3. src/archive/tar/testdata/gnu-nil-sparse-data.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  4. src/archive/tar/testdata/gnu-nil-sparse-hole.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  5. src/archive/tar/testdata/pax-nil-sparse-data.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 4K bytes
    - Viewed (0)
  6. src/archive/tar/testdata/pax-nil-sparse-hole.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 3K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/allow-nil-rule-out.yaml

    Yangmin Zhu <******@****.***> 1617651067 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 05 19:31:07 UTC 2021
    - 349 bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/extended-allow-nil-rule-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  9. pkg/controller/deployment/sync_test.go

    			newRS:  rs("foo-v2", 2, nil, newTimestamp),
    			oldRSs: []*apps.ReplicaSet{rs("foo-v1", 3, nil, oldTimestamp)},
    
    			expectedNew: rs("foo-v2", 4, nil, newTimestamp),
    			expectedOld: []*apps.ReplicaSet{rs("foo-v1", 6, nil, oldTimestamp)},
    		},
    		{
    			name:          "proportional scaling: 5 -> 3",
    			deployment:    newDeployment("foo", 3, nil, nil, nil, nil),
    			oldDeployment: newDeployment("foo", 5, nil, nil, nil, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    	if s == nil {
    		return nil, nil
    	}
    
    	if err := validateUnsupportedFields(s); err != nil {
    		return nil, err
    	}
    
    	vv, err := newValueValidation(s)
    	if err != nil {
    		return nil, err
    	}
    
    	g, err := newGenerics(s)
    	if err != nil {
    		return nil, err
    	}
    
    	x, err := newExtensions(s)
    	if err != nil {
    		return nil, err
    	}
    
    	vx, err := newValidationExtensions(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top