Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,196 for _new (0.19 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump.json

                          "typed_config": {
                            "@type": "type.googleapis.com/envoy.extensions.filters.network.set_filter_state.v3.Config",
                            "on_new_connection": [
                              {
                                "object_key": "envoy.filters.listener.original_dst.local_ip",
                                "format_string": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: New Password */
        public static final String LABELS_PROFILE_placeholder_new_password = "{labels.profile.placeholder_new_password}";
    
        /** The key of the message: Confirm New Password */
        public static final String LABELS_PROFILE_placeholder_confirm_new_password = "{labels.profile.placeholder_confirm_new_password}";
    
        /** The key of the message: Search */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  3. tests/preload_test.go

    	}
    
    	CheckUser(t, user, user)
    
    	var user2 User
    	DB.Preload(clause.Associations).Find(&user2, "id = ?", user.ID)
    	CheckUser(t, user2, user)
    
    	user3 := *GetUser("preload_with_associations_new", Config{
    		Account:   true,
    		Pets:      2,
    		Toys:      3,
    		Company:   true,
    		Manager:   true,
    		Team:      4,
    		Languages: 3,
    		Friends:   1,
    	})
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Apr 25 12:21:03 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CallResolver.kt

                Errors.SPREAD_OF_NULLABLE,
                Errors.SPREAD_OF_LAMBDA_OR_CALLABLE_REFERENCE,
                Errors.MANY_LAMBDA_EXPRESSION_ARGUMENTS,
                Errors.UNEXPECTED_TRAILING_LAMBDA_ON_A_NEW_LINE,
                Errors.TOO_MANY_ARGUMENTS,
                Errors.REDUNDANT_SPREAD_OPERATOR_IN_NAMED_FORM_IN_FUNCTION,
                Errors.REDUNDANT_SPREAD_OPERATOR_IN_NAMED_FORM_IN_ANNOTATION,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Mar 14 06:10:31 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

      const std::string src = GetURIForPath("RenameFileOverwriteSrc");
      const std::string dst = GetURIForPath("RenameFileOverwriteDst");
    
      WriteString(src, "test_old");
      ASSERT_TF_OK(status_);
      WriteString(dst, "test_new");
      ASSERT_TF_OK(status_);
    
      tf_gcs_filesystem::PathExists(filesystem_, dst.c_str(), status_);
      EXPECT_TF_OK(status_);
      tf_gcs_filesystem::RenameFile(filesystem_, src.c_str(), dst.c_str(), status_);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 12:04:23 GMT 2020
    - 24.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ko.properties

    labels.profile_button = 설정
    labels.profile.title = 설정
    labels.profile.update = 업데이트
    labels.profile.back = 이전
    labels.profile.placeholder_old_password = 현재 비밀번호
    labels.profile.placeholder_new_password = 새 암호
    labels.profile.placeholder_confirm_new_password = 새 암호 확인
    labels.top.search = 검색
    labels.index_title = Fess
    labels.index_form_search_btn = 검색
    labels.index_osdd_title = 검색
    labels.index_form_option_btn = 옵션
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ru.properties

    labels.profile_button=Профиль
    labels.profile.title=Профиль
    labels.profile.update=Обновление
    labels.profile.back=Назад
    labels.profile.placeholder_old_password=Текущий пароль
    labels.profile.placeholder_new_password=Новый пароль
    labels.profile.placeholder_confirm_new_password=Подтвердить новый пароль
    labels.top.search=Поиск
    labels.index_title=Fess
    labels.index_form_search_btn=Поиск
    labels.index_osdd_title=Поиск
    labels.index_form_option_btn=Настройки
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. tests/query_test.go

    		}
    
    		if len(results) != 2 {
    			t.Errorf("Incorrect users length, expects: 2, got %v", len(results))
    		}
    
    		for idx := range results {
    			results[idx].Name = results[idx].Name + "_new"
    		}
    
    		if err := tx.Save(results).Error; err != nil {
    			t.Fatalf("failed to save users, got error %v", err)
    		}
    
    		return nil
    	}); result.Error != nil || result.RowsAffected != 6 {
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

      // a bad status. Once we fix this, we may want to return early instead of
      // executing the following code.
      for (int i = first_new_node_id; i < parent->graph.num_node_ids(); ++i) {
        Node* new_node = parent->graph.FindNodeId(i);
        if (new_node == nullptr) continue;
        parent->name_map[new_node->name()] = new_node;
      }
    
      // Populate 'outputs'.
      DCHECK_LE(loop_outputs.size(), num_loop_vars);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.profile.title=Profil
    labels.profile.update=Aktualisieren
    labels.profile.back=Zurück
    labels.profile.placeholder_old_password=Aktuelles Passwort
    labels.profile.placeholder_new_password=Neues Passwort
    labels.profile.placeholder_confirm_new_password=Neues Passwort (bestätigen)
    labels.top.search=Suche
    labels.index_title=Fess
    labels.index_form_search_btn=Suche
    labels.index_osdd_title=Suche
    labels.index_form_option_btn=Optionen
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
Back to top