Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 1,778 for Info (0.26 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonManager.java

        /**
         * this method is only here for backward compat (project-info-reports:dependencies)
         * the default implementation will return an empty AuthenticationInfo
         *
         * @param id an id
         * @return corresponding authentication info
         */
        AuthenticationInfo getAuthenticationInfo(String id);
    
        ProxyInfo getProxy(String protocol);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tests/scan_test.go

    	personMatched := false
    	addressMatched := false
    
    	for _, info := range personAddressInfoList {
    		if info.Person == nil {
    			t.Fatalf("Failed, expected not nil, got person nil")
    		}
    		if info.Address == nil {
    			t.Fatalf("Failed, expected not nil, got address nil")
    		}
    		if info.Person.ID == person1.ID {
    			personMatched = true
    			if info.Person.Name != person1.Name {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/adminlte.min.css.map

    .table-success:hover {\n  background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n  background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n  background-color: #bee5eb;\n}\n\n.table-info th,\n.table-info td,\n.table-info thead th,\n.table-info tbody + tbody {\n  border-color: #86cfda;\n}\n\n.table-hover .table-info:hover {\n  background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

    message CronJob {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Specification of the desired behavior of a cron job, including the schedule.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/security/simple-oauth2.md

    πŸ”  "↔" 🎻 (🍡 πŸš€).
    
    πŸ‘« πŸ›Ž βš™οΈ πŸ“£ 🎯 πŸ’‚β€β™‚ βœ”, πŸ–Ό:
    
    * `users:read` βš–οΈ `users:write` ⚠ πŸ–Ό.
    * `instagram_basic` βš™οΈ πŸ‘±πŸ“” / πŸ‘±πŸ“”.
    * `https://www.googleapis.com/auth/drive` βš™οΈ πŸ‡ΊπŸ‡ΈπŸ”.
    
    /// info
    
    Oauth2️⃣ "↔" 🎻 πŸ‘ˆ πŸ“£ 🎯 βœ” βœ”.
    
    ⚫️ 🚫 πŸ€” πŸš₯ ⚫️ βœ”οΈ 🎏 🦹 πŸ’– `:` βš–οΈ πŸš₯ ⚫️ πŸ“›.
    
    πŸ‘ˆ β„Ή πŸ› οΈ 🎯.
    
    Oauth2️⃣ πŸ‘« 🎻.
    
    ///
    
    ## πŸ“Ÿ 🀚 `username` & `password`
    
    πŸ”œ ➑️ βš™οΈ πŸš™ 🚚 **FastAPI** 🍡 πŸ‘‰.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. docs/debugging/README.md

    ```
    
    The command takes no flags
    
    ```sh
    mc support diagnostics myminio/
    ```
    
    The output printed will be of the form
    
    ```sh
    ● Admin Info ... βœ” 
    ● CPU ... βœ” 
    ● Disk Hardware ... βœ” 
    ● Os Info ... βœ” 
    ● Mem Info ... βœ” 
    ● Process Info ... βœ” 
    ● Config ... βœ” 
    ● Drive ... βœ” 
    ● Net ... βœ” 
    *********************************************************************************
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                }
                BasicFileInformation info = response.getInfo(BasicFileInformation.class);
                this.isExists = true;
                if ( info instanceof FileBasicInfo ) {
                    this.attributes = info.getAttributes() & ATTR_GET_MASK;
                    this.createTime = info.getCreateTime();
                    this.lastModified = info.getLastWriteTime();
                    this.lastAccess = info.getLastAccessTime();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/impl/LogbackConfiguration.java

            switch (level) {
                case DEBUG:
                    value = ch.qos.logback.classic.Level.DEBUG;
                    break;
    
                case INFO:
                    value = ch.qos.logback.classic.Level.INFO;
                    break;
    
                default:
                    value = ch.qos.logback.classic.Level.ERROR;
                    break;
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. cni/pkg/repair/repair.go

    	"istio.io/istio/pkg/kube"
    )
    
    var repairLog = scopes.CNIAgent
    
    func StartRepair(ctx context.Context, cfg config.RepairConfig) {
    	if !cfg.Enabled {
    		repairLog.Info("CNI repair controller is disabled")
    		return
    	}
    	repairLog.Info("starting CNI sidecar repair controller")
    
    	client, err := clientSetup()
    	if err != nil {
    		repairLog.Fatalf("CNI repair could not construct clientSet: %s", err)
    	}
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jun 28 19:12:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractorTest.java

                ExtractData data = emlExtractor.getText(in, null);
                final String content = data.getContent();
                logger.info(content);
                assertTrue(content.contains("プレむステーション"));
                assertTrue(data.getValues("Subject")[0].contains("γƒ€γ‚€γ‚Έγ‚§γ‚Ήγƒˆ"));
            }
        }
    
        public void test_getMultipartText() throws IOException {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top