Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for Xacc (0.09 sec)

  1. cmd/admin-handlers-users.go

    					}
    				}
    				svcAccts[user] = madmin.SRSvcAccCreate{
    					Parent:        acc.Credentials.ParentUser,
    					AccessKey:     user,
    					SecretKey:     acc.Credentials.SecretKey,
    					Groups:        acc.Credentials.Groups,
    					Claims:        claims,
    					SessionPolicy: json.RawMessage(policyJSON),
    					Status:        acc.Credentials.Status,
    					Name:          sa.Name,
    					Description:   sa.Description,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Eax    uint32
    	Trapno uint32
    	Err    uint32
    	Eip    uint32
    	Cs     uint32
    	Eflags uint32
    	Esp    uint32
    	Ss     uint32
    	Gs     uint32
    }
    
    type FpReg struct {
    	Env   [7]uint32
    	Acc   [8][10]uint8
    	Ex_sw uint32
    	Pad   [64]uint8
    }
    
    type FpExtendedPrecision struct{}
    
    type PtraceIoDesc struct {
    	Op   int32
    	Offs uintptr
    	Addr *byte
    	Len  uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

    		Secure: s.secure,
    	})
    	if err != nil {
    		c.Fatalf("Err creating user admin client: %v", err)
    	}
    	userAdmClient.SetCustomTransport(s.TestSuiteCommon.client.Transport)
    
    	// Create svc acc
    	cr := c.mustCreateSvcAccount(ctx, value.AccessKeyID, userAdmClient)
    
    	svcClient := s.getUserClient(c, cr.AccessKey, cr.SecretKey, "")
    
    	// 1. Check S3 access for service account ListObjects()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  4. src/math/big/floatconv_test.go

    		// as in 0p-1074 which makes no sense to emulate here)
    		if test.prec == 53 && test.format != 'p' && f.Sign() != 0 && (test.round == ToNearestEven || test.round == defaultRound) {
    			f64, acc := f.Float64()
    			if acc != Exact {
    				t.Errorf("%v: expected exact conversion to float64", test)
    				continue
    			}
    			got := strconv.FormatFloat(f64, test.format, test.digits, 64)
    			if got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                    throw new IllegalArgumentException("Unknown node type: ${nodeIdentity.nodeType}")
            }
        }
    
        def joinPaths(String... paths) {
            paths.inject("") { acc, path ->
                acc + (acc.endsWith(":") && path.startsWith(":") ? path.substring(1) : path)
            }
        }
    
        boolean matchTransformationIdentity(actual, PlannedTransformStepIdentityWithoutId expected) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

                    "7a8236d6-6bec-4176-b6a1-f869c02183c3",
                    "089f4195-881c-4f9e-8bc1-124531dee977",
                    "46ffda62-768a-4864-9581-cc75eafe1a67",
                    "1d6226f6-dacc-42a9-bd88-7aab1f59df74",
                    "0948ed55-c25e-4319-9801-5f817bac09b5",
                    "2fd52f5e-b856-47ad-9e58-45c1d0ba437b",
                    "6c325bd0-ac6b-4391-a5c5-caa160972fa2",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/math/big/floatconv.go

    	}
    
    	// exponent
    	var exp int64
    	var ebase int
    	exp, ebase, err = scanExponent(r, true, base == 0)
    	if err != nil {
    		return
    	}
    
    	// special-case 0
    	if len(z.mant) == 0 {
    		z.prec = prec
    		z.acc = Exact
    		z.form = zero
    		f = z
    		return
    	}
    	// len(z.mant) > 0
    
    	// The mantissa may have a radix point (fcount <= 0) and there
    	// may be a nonzero exponent exp. The radix point amounts to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/regexp/find_test.go

    	{`(((a|b|c)*)(d))`, "abcd", build(1, 0, 4, 0, 4, 0, 3, 2, 3, 3, 4)},
    	{`\a\f\n\r\t\v`, "\a\f\n\r\t\v", build(1, 0, 6)},
    	{`[\a\f\n\r\t\v]+`, "\a\f\n\r\t\v", build(1, 0, 6)},
    
    	{`a*(|(b))c*`, "aacc", build(1, 0, 4, 2, 2, -1, -1)},
    	{`(.*).*`, "ab", build(1, 0, 2, 0, 2)},
    	{`[.]`, ".", build(1, 0, 1)},
    	{`/$`, "/abc/", build(1, 4, 5)},
    	{`/$`, "/abc", nil},
    
    	// multiple matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  9. pkg/controller/deployment/util/deployment_util.go

    			secMax = v
    		}
    	}
    	return secMax
    }
    
    // Revision returns the revision number of the input object.
    func Revision(obj runtime.Object) (int64, error) {
    	acc, err := meta.Accessor(obj)
    	if err != nil {
    		return 0, err
    	}
    	v, ok := acc.GetAnnotations()[RevisionAnnotation]
    	if !ok {
    		return 0, nil
    	}
    	return strconv.ParseInt(v, 10, 64)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"text/x-vbasic",
    				"text/x-vbdotnet",
    				"text/x-vbscript",
    				"text/x-vcalendar",
    				"text/x-vcard",
    				"text/x-verilog",
    				"text/x-vhdl",
    				"text/x-web-markdown",
    				"text/x-yacc",
    				"text/x-yaml",
    				"video/3gpp",
    				"video/3gpp-tt",
    				"video/3gpp2",
    				"video/bmpeg",
    				"video/bt656",
    				"video/celb",
    				"video/dv",
    				"video/example",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top