Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 703 for true (0.21 sec)

  1. src/cmd/asm/internal/arch/arm.go

    }
    
    var armJump = map[string]bool{
    	"B":    true,
    	"BL":   true,
    	"BX":   true,
    	"BEQ":  true,
    	"BNE":  true,
    	"BCS":  true,
    	"BHS":  true,
    	"BCC":  true,
    	"BLO":  true,
    	"BMI":  true,
    	"BPL":  true,
    	"BVS":  true,
    	"BVC":  true,
    	"BHI":  true,
    	"BLS":  true,
    	"BGE":  true,
    	"BLT":  true,
    	"BGT":  true,
    	"BLE":  true,
    	"CALL": true,
    	"JMP":  true,
    }
    
    func jumpArm(word string) bool {
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/filter_test.go

    	noTags := Filter{
    		set: true,
    		And: And{
    			Tags: []Tag{},
    		},
    		andSet: true,
    	}
    
    	oneTag := Filter{
    		set: true,
    		And: And{
    			Tags: []Tag{{Key: "FOO", Value: "1"}},
    		},
    		andSet: true,
    	}
    
    	twoTags := Filter{
    		set: true,
    		And: And{
    			Tags: []Tag{{Key: "FOO", Value: "1"}, {Key: "BAR", Value: "2"}},
    		},
    		andSet: true,
    	}
    
    	tests := []struct {
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Tue Feb 27 00:01:20 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  3. istioctl/pkg/validate/validate_test.go

    			in:    validIstioConfig,
    			valid: true,
    		},
    		{
    			name:  "warning",
    			in:    warnDestinationRule,
    			valid: true,
    			warn:  true,
    		},
    		{
    			name:  "exportTo=.",
    			in:    validVirtualService2YAML,
    			valid: true,
    		},
    		{
    			name:  "appProtocol=http",
    			in:    validPortNamingSvcWithAppProtocol,
    			valid: true,
    		},
    		{
    			name:  "appProtocol=http,name=fake",
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config clusters invalid" should fail
    		},
    		{ // listeners invalid
    			args:           strings.Split("listeners invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config listeners invalid" should fail
    		},
    		{ // logging empty
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Wed Apr 10 21:51:29 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/loong64.go

    	switch name {
    	case "F":
    		if 0 <= n && n <= 31 {
    			return loong64.REG_F0 + n, true
    		}
    	case "FCSR":
    		if 0 <= n && n <= 31 {
    			return loong64.REG_FCSR0 + n, true
    		}
    	case "FCC":
    		if 0 <= n && n <= 31 {
    			return loong64.REG_FCC0 + n, true
    		}
    	case "R":
    		if 0 <= n && n <= 31 {
    			return loong64.REG_R0 + n, true
    		}
    	}
    	return 0, false
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Mon Feb 06 13:49:53 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. internal/bucket/versioning/versioning.go

    }
    
    // PrefixSuspended - returns true if versioning is suspended at the bucket level
    // or suspended on the given prefix.
    func (v Versioning) PrefixSuspended(prefix string) bool {
    	if v.Status == Suspended {
    		return true
    	}
    	if v.Status == Enabled {
    		if prefix == "" {
    			return false
    		}
    		if v.ExcludeFolders && strings.HasSuffix(prefix, "/") {
    			return true
    		}
    
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Sep 04 19:57:37 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle_test.go

    			prefix:      "",
    			want:        true,
    		},
    		{
    			inputConfig: `<LifecycleConfiguration><Rule><Status>Enabled</Status><Filter></Filter><Expiration><Days>42</Days><ExpiredObjectAllVersions>true</ExpiredObjectAllVersions></Expiration></Rule></LifecycleConfiguration>`,
    			prefix:      "",
    			want:        true,
    		},
    	}
    
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Sat Mar 09 06:41:22 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. cmd/policy_test.go

    		IsOwner:         true,
    		ObjectName:      "yourobject",
    	}
    
    	testCases := []struct {
    		args           policy.BucketPolicyArgs
    		expectedResult bool
    	}{
    		{anonGetBucketLocationArgs, true},
    		{anonPutObjectActionArgs, true},
    		{anonGetObjectActionArgs, false},
    		{getBucketLocationArgs, true},
    		{putObjectActionArgs, true},
    		{getObjectActionArgs, true},
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Sep 04 19:57:37 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  9. internal/s3select/sql/value_test.go

    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "truetabs",
    			fields: fields{
    				value: []byte("\ttrue\t"),
    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "TRUE",
    			fields: fields{
    				value: []byte("TRUE"),
    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "FALSE",
    			fields: fields{
    				value: []byte("FALSE"),
    			},
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Mon Mar 06 16:56:10 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  10. cni/pkg/repair/repair_test.go

    				InitExitCode:      126,
    			},
    			brokenPodWaiting,
    			true,
    		},
    		{
    			"Testing broken pod (in terminating state) with only ExitCode check",
    			config.RepairConfig{
    				SidecarAnnotation: "sidecar.istio.io/status",
    				InitContainerName: constants.ValidationContainerName,
    				InitExitCode:      126,
    			},
    			brokenPodTerminating,
    			true,
    		},
    		{
    			"Testing broken pod with wrong ExitCode",
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Tue Oct 24 03:31:28 GMT 2023
    - 10.6K bytes
    - Viewed (0)
Back to top