Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Embedded (0.21 sec)

  1. .bazelrc

    #     rbe_linux_cuda_nvcc:            RBE options to build with GPU support using nvcc.
    #
    # Embedded Linux options (experimental and only tested with TFLite build yet)
    #     elinux:          General Embedded Linux options shared by all flavors.
    #     elinux_aarch64:  Embedded Linux options for aarch64 (ARM64) CPU support.
    #     elinux_armhf:    Embedded Linux options for armhf (ARMv7) CPU support.
    #
    # Release build options (for all operating systems)
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  2. tests/migrate_test.go

    		gorm.Model
    		StatAb UserStat `gorm:"embedded;embeddedPrefix:stat_ab_"`
    	}
    
    	type UserStat1 struct {
    		GroundDestroyCount string
    	}
    
    	type GroundRate struct {
    		GroundDestroyCount int
    	}
    
    	type GameUser1 struct {
    		gorm.Model
    		StatAb       UserStat1  `gorm:"embedded;embeddedPrefix:stat_ab_"`
    		GroundRateRb GroundRate `gorm:"embedded;embeddedPrefix:rate_ground_rb_"`
    	}
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VPEXTRW $17, X20, (SP)(AX*2)      // 62e37d0815244411 or 62e3fd0815244411
    	VPEXTRW $127, X20, (SP)(AX*2)     // 62e37d081524447f or 62e3fd081524447f
    	// EVEX: embedded zeroing.
    	VADDPD.Z X30, X1, K7, X0  // 6291f58f58c6
    	VMAXPD.Z (AX), Z2, K1, Z1 // 62f1edc95f08
    	// EVEX: embedded rounding.
    	VADDPD.RU_SAE Z3, Z2, K1, Z1   // 62f1ed5958cb
    	VADDPD.RD_SAE Z3, Z2, K1, Z1   // 62f1ed3958cb
    	VADDPD.RZ_SAE Z3, Z2, K1, Z1   // 62f1ed7958cb
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		Code:           "XMinioLDAPExpectedLoginName",
    		Description:    "Expected LDAP short username but was given full DN.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    }
    
    // toAPIErrorCode - Converts embedded errors. Convenience
    // function written to handle all cases where we have known types of
    // errors returned by underlying layers.
    func toAPIErrorCode(ctx context.Context, err error) (apiErr APIErrorCode) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  5. cmd/iam-store.go

    	}
    
    	// Extracted session policy name string can be removed as its not useful
    	// at this point.
    	delete(m, sessionPolicyNameExtracted)
    
    	// sessionPolicy is nil and there is embedded policy attached we remove
    	// embedded policy at that point.
    	if _, ok := m[policy.SessionPolicyName]; ok && opts.sessionPolicy == nil {
    		delete(m, policy.SessionPolicyName)
    		m[iamPolicyClaimNameSA()] = inheritedPolicyType
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  6. src/main/webapp/css/font-awesome.min.css

    :auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(./fonts/fa-brands-400.eot);src:url(./fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(./fonts/fa-brands-400.woff2) format("woff2"),url(./fonts/fa-brands-400.woff) format("woff"),url(./fonts/fa-brands-400.ttf) format("truetype"),url(./fonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 55.8K bytes
    - Viewed (4)
  7. src/main/webapp/css/admin/font-awesome.min.css

    :auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(./fonts/fa-brands-400.eot);src:url(./fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(./fonts/fa-brands-400.woff2) format("woff2"),url(./fonts/fa-brands-400.woff) format("woff"),url(./fonts/fa-brands-400.ttf) format("truetype"),url(./fonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 55.8K bytes
    - Viewed (5)
  8. cmd/iam.go

    	// server.
    	LDAPUsersSysType UsersSysType = "LDAPUsersSys"
    )
    
    const (
    	statusEnabled  = "enabled"
    	statusDisabled = "disabled"
    )
    
    const (
    	embeddedPolicyType  = "embedded-policy"
    	inheritedPolicyType = "inherited-policy"
    )
    
    // IAMSys - config system.
    type IAMSys struct {
    	// Need to keep them here to keep alignment - ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG
    	// metrics
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    runner.build(config);
    
                    final int port = runner.node().settings().getAsInt("http.port", 9200);
                    httpAddress = "http://localhost:" + port;
                    logger.warn("Embedded OpenSearch is running. This configuration is not recommended for production use.");
                    break;
                }
            }
            client = createHttpClient(fessConfig, httpAddress);
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

        version we're testing against.
    
        ```kotlin
        implementation("org.conscrypt:conscrypt-openjdk-uber:2.0.0")
        ```
    
     *  New: Update the embedded public suffixes list.
    
    
    ## Version 3.13.1
    
    _2019-02-05_
    
     *  Fix: Don't crash when using a custom `X509TrustManager` or `SSLSocket` on Android. When we
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
Back to top