Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 238 for mobile (0.24 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.mail = value;
        }
    
        public String getMobile() {
            checkSpecifiedProperty("mobile");
            return convertEmptyToNull(mobile);
        }
    
        public void setMobile(String value) {
            registerModifiedProperty("mobile");
            this.mobile = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

      return false;
    #else   // !defined(IS_MOBILE_PLATFORM)
      bool is_alive;
      status->status =
          tensorflow::unwrap(ctx)->GetDistributedManager()->CheckRemoteAlive(
              worker_name, &is_alive);
      return is_alive;
    #endif  // !IS_MOBILE_PLATFORM
    }
    
    TF_CAPI_EXPORT extern void TFE_ContextAsyncWait(TFE_Context* ctx,
                                                    TF_Status* status) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setMobile_Regexp(String mobile) {
            setMobile_Regexp(mobile, null);
        }
    
        public void setMobile_Regexp(String mobile, ConditionOptionCall<RegexpQueryBuilder> opLambda) {
            RegexpQueryBuilder builder = regRegexpQ("mobile", mobile);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 326.1K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

    // TODO(sjr): Remove the IS_MOBILE_PLATFORM guard. This will require ensuring
    // that the tensorflow/cc/saved_model:loader build target is mobile friendly.
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "Loading a SavedModel is not supported on mobile. File a bug at "
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  5. ReadMe.md

     * [Kotlin Multiplatform Mobile](https://kotlinlang.org/lp/mobile/) for sharing code between Android and iOS
     * [Getting Started with Kotlin Multiplatform Mobile Guide](https://kotlinlang.org/docs/mobile/create-first-app.html)
     * [Kotlin Multiplatform Benefits](https://kotlinlang.org/docs/reference/multiplatform.html)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 11 14:28:46 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/UserDbm.java

                0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnMobile = cci("mobile", "mobile", null, null, String.class, "mobile", null, false, false, false,
                "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 27K bytes
    - Viewed (0)
  7. tests/create_test.go

    		Email  string
    		Mobile string `gorm:"default:'133xxxx'"`
    	}
    
    	err := DB.Migrator().DropTable(&OnConflictUser{})
    	AssertEqual(t, err, nil)
    	err = DB.AutoMigrate(&OnConflictUser{})
    	AssertEqual(t, err, nil)
    
    	u := OnConflictUser{
    		ID:     "on-conflict-user-id",
    		Name:   "on-conflict-user-name",
    		Email:  "on-conflict-user-email",
    		Mobile: "on-conflict-user-mobile",
    	}
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Tue Mar 19 03:50:28 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java

        }
    
        public void setMobile_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setMobile_Terms("mobile", opLambda, null);
        }
    
        public void setMobile_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsUserCA> aggsLambda) {
            setMobile_Terms("mobile", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 212.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsUserCB.java

                doColumn("labeledURI");
            }
    
            public void columnMail() {
                doColumn("mail");
            }
    
            public void columnMobile() {
                doColumn("mobile");
            }
    
            public void columnName() {
                doColumn("name");
            }
    
            public void columnPager() {
                doColumn("pager");
            }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

                result.setLabeledURI(DfTypeUtil.toString(source.get("labeledURI")));
                result.setMail(DfTypeUtil.toString(source.get("mail")));
                result.setMobile(DfTypeUtil.toString(source.get("mobile")));
                result.setName(DfTypeUtil.toString(source.get("name")));
                result.setPager(DfTypeUtil.toString(source.get("pager")));
                result.setPassword(DfTypeUtil.toString(source.get("password")));
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
Back to top