Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for invalidgid (0.22 sec)

  1. src/os/user/listgroups_unix_test.go

    	"strings"
    	"testing"
    )
    
    var testGroupFile = `# See the opendirectoryd(8) man page for additional
    # information about Open Directory.
    ##
    nobody:*:-2:
    nogroup:*:-1:
    wheel:*:0:root
    emptyid:*::root
    invalidgid:*:notanumber:root
    +plussign:*:20:root
    -minussign:*:21:root
    # Next line is invalid (empty group name)
    :*:22:root
    
    daemon:*:1:root
        indented:*:7:root
    # comment:*:4:found
         # comment:*:4:found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/os/user/lookup_unix_test.go

    	{testGroupFile, "plussign", ""},
    	{testGroupFile, "+plussign", ""},
    	{testGroupFile, "-minussign", ""},
    	{testGroupFile, "minussign", ""},
    	{testGroupFile, "emptyid", ""},
    	{testGroupFile, "invalidgid", ""},
    	{testGroupFile, "indented", "7"},
    	{testGroupFile, "# comment", ""},
    	{testGroupFile, "largegroup", "1000"},
    	{testGroupFile, "manymembers", "777"},
    	{"", "emptyfile", ""},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 04:31:34 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode_string.go

    	_ = x[MixedStructLit-64]
    	_ = x[InvalidStructLit-65]
    	_ = x[MissingLitField-66]
    	_ = x[DuplicateLitField-67]
    	_ = x[UnexportedLitField-68]
    	_ = x[InvalidLitField-69]
    	_ = x[UntypedLit-70]
    	_ = x[InvalidLit-71]
    	_ = x[AmbiguousSelector-72]
    	_ = x[UndeclaredImportedName-73]
    	_ = x[UnexportedName-74]
    	_ = x[UndeclaredName-75]
    	_ = x[MissingFieldOrMethod-76]
    	_ = x[BadDotDotDotSyntax-77]
    	_ = x[NonVariadicDotDotDot-78]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/internal/types/errors/code_string.go

    	_ = x[MixedStructLit-64]
    	_ = x[InvalidStructLit-65]
    	_ = x[MissingLitField-66]
    	_ = x[DuplicateLitField-67]
    	_ = x[UnexportedLitField-68]
    	_ = x[InvalidLitField-69]
    	_ = x[UntypedLit-70]
    	_ = x[InvalidLit-71]
    	_ = x[AmbiguousSelector-72]
    	_ = x[UndeclaredImportedName-73]
    	_ = x[UnexportedName-74]
    	_ = x[UndeclaredName-75]
    	_ = x[MissingFieldOrMethod-76]
    	_ = x[BadDotDotDotSyntax-77]
    	_ = x[NonVariadicDotDotDot-78]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/TreeConnectResponse.java

        String getService ();
    
    
        /**
         * @return whether the share is in DFS
         */
        boolean isShareDfs ();
    
    
        /**
         * @return whether the tree id is a valid one
         */
        boolean isValidTid ();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

        public final boolean isShareDfs () {
            return this.shareIsInDfs;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.TreeConnectResponse#isValidTid()
         */
        @Override
        public boolean isValidTid () {
            return getTid() != 0xFFFF;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  7. pilot/pkg/util/network/ip_test.go

    			addrs:    []string{"1111:2222::1", "::1", "127.0.0.1", "2.2.2.2", "2222:3333::1"},
    			expected: false,
    		},
    		{
    			name:     "test for invalid ip address",
    			addrs:    []string{"invalidip"},
    			expected: true,
    		},
    	}
    	for _, tt := range tests {
    		result := AllIPv6(tt.addrs)
    		if result != tt.expected {
    			t.Errorf("Test %s failed, expected: %t got: %t", tt.name, tt.expected, result)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: 'referencing unsupported backendRef: group "" kind "GcsBucket"'
          reason: InvalidKind
          status: "False"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          name: gateway
          namespace: istio-system
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/internal/types/errors/codes.go

    	//  	inner struct { i int }
    	//  }
    	//
    	//  var _ = outer{inner: {1}}
    	UntypedLit
    
    	// InvalidLit occurs when a composite literal expression does not match its
    	// type.
    	//
    	// Example:
    	//  type P *struct{
    	//  	x int
    	//  }
    	//  var _ = P {}
    	InvalidLit
    
    	// AmbiguousSelector occurs when a selector is ambiguous.
    	//
    	// Example:
    	//  type E1 struct { i int }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    			ExpectedMap: internalAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				RemoteAddr: publicIP,
    			},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				RemoteAddr: "invalidIP",
    			},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    	}
    
    	_, ipRange, _ := netutils.ParseCIDRSloppy("10.0.0.0/24")
    	discoveryAddresses := DefaultAddresses{DefaultAddress: "ExternalAddress"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top