Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 282 for abde (0.06 sec)

  1. src/cmd/internal/obj/riscv/cpu.go

    	ASRAI
    	ALUI
    	AAUIPC
    	AADD
    	ASLT
    	ASLTU
    	AAND
    	AOR
    	AXOR
    	ASLL
    	ASRL
    	ASUB
    	ASRA
    
    	// 2.5: Control Transfer Instructions
    	AJAL
    	AJALR
    	ABEQ
    	ABNE
    	ABLT
    	ABLTU
    	ABGE
    	ABGEU
    
    	// 2.6: Load and Store Instructions
    	ALW
    	ALWU
    	ALH
    	ALHU
    	ALB
    	ALBU
    	ASW
    	ASH
    	ASB
    
    	// 2.7: Memory Ordering Instructions
    	AFENCE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/a.out.go

    	AANDCC
    	AANDN
    	AANDNCC
    	AANDISCC
    	ABC
    	ABCL
    	ABEQ
    	ABGE // not LT = G/E/U
    	ABGT
    	ABLE // not GT = L/E/U
    	ABLT
    	ABNE  // not EQ = L/G/U
    	ABVC  // Branch if float not unordered (also branch on not summary overflow)
    	ABVS  // Branch if float unordered (also branch on summary overflow)
    	ABDNZ // Decrement CTR, and branch if CTR != 0
    	ABDZ  // Decrement CTR, and branch if CTR == 0
    	ACMP
    	ACMPU
    	ACMPEQB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/StringsTest.java

        assertEquals("", Strings.commonPrefix("abc", ""));
        assertEquals("", Strings.commonPrefix("", "abc"));
        assertEquals("", Strings.commonPrefix("abcde", "xyz"));
        assertEquals("", Strings.commonPrefix("xyz", "abcde"));
        assertEquals("", Strings.commonPrefix("xyz", "abcxyz"));
        assertEquals("a", Strings.commonPrefix("abc", "aaaaa"));
        assertEquals("aa", Strings.commonPrefix("aa", "aaaaa"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/math/big/arith_ppc64x.s

    	MOVD  16(R9), R17     // R17 = y[i+1]
    	MOVD  24(R9), R18     // R18 = y[i+2]
    	MOVDU 32(R9), R19     // R19 = y[i+3]
    	ADDE  R11, R16, R20   // R20 = x[i] + y[i] + CA
    	ADDE  R12, R17, R21   // R21 = x[i+1] + y[i+1] + CA
    	ADDE  R14, R18, R22   // R22 = x[i+2] + y[i+2] + CA
    	ADDE  R15, R19, R23   // R23 = x[i+3] + y[i+3] + CA
    	MOVD  R20, 8(R10)     // z[i]
    	MOVD  R21, 16(R10)    // z[i+1]
    	MOVD  R22, 24(R10)    // z[i+2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. tensorflow/c/BUILD

        tags = [
            "no_cuda_asan",  # TODO(b/181771536)
            "no_windows",  # TODO(b/155444728)
        ],
        # We must ensure that the dependencies can be dynamically linked since
        # the shared library must be able to use core:framework.
        deps = [
            ":c_api",
            ":c_api_internal",
            ":c_test_util",
            ":test_op_kernel",
            ":tf_buffer",
            ":tf_buffer_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/oauth2-jwt.md

    </div>
    
    !!! tip
        With `passlib`, you could even configure it to be able to read passwords created by **Django**, a **Flask** security plug-in or many others.
    
        So, you would be able to, for example, share the same data from a Django application in a database with a FastAPI application. Or gradually migrate a Django application using the same database.
    
        And your users would be able to login from your Django app or from your **FastAPI** app, at the same time.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    			// The controller needs to be able to set a service's finalizers to be able to create an EndpointSlice
    			// resource that is owned by the service and sets blockOwnerDeletion=true in its ownerRef.
    			rbacv1helpers.NewRule("update").Groups(legacyGroup).Resources("services/finalizers").RuleOrDie(),
    			// The controller needs to be able to set a service's finalizers to be able to create an EndpointSlice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users_test.go

    	if err != nil {
    		c.Fatalf("should be able to get user info: %v", err)
    	}
    	return ui
    }
    
    func (c *check) mustNotCreateIAMUser(ctx context.Context, admClnt *madmin.AdminClient) {
    	c.Helper()
    	randUser := mustGetUUID()
    	randPass := mustGetUUID()
    	err := admClnt.AddUser(ctx, randUser, randPass)
    	if err == nil {
    		c.Fatalf("should not be able to create a user")
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  9. src/archive/tar/writer_test.go

    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    		tests: []testFnc{
    			testRemaining{8, 5},
    			testWrite{"ab\x00\x00\x00cde", 8, nil},
    			testWrite{"a", 0, ErrWriteTooLong},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    		tests: []testFnc{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, errors.Wrap(err, "error uploading crisocket"))
    	}
    
    	// Create RBAC rules that makes the bootstrap tokens able to get nodes
    	if err := nodebootstraptoken.AllowBoostrapTokensToGetNodes(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to post CSRs
    	if err := nodebootstraptoken.AllowBootstrapTokensToPostCSRs(client); err != nil {
    		errs = append(errs, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top