Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for ignored (0.3 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
            <field xdoc.separator="blank">
              <name>reports</name>
              <version>4.0.0</version>
              <description>
                @deprecated Now ignored by Maven.
              </description>
              <type>DOM</type>
            </field>
            <field>
              <name>reporting</name>
              <version>4.0.0+</version>
              <description>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Fixed a regression in "kubeadm init" where a user-specified --kubeconfig file was being ignored. ([#122735](https://github.com/kubernetes/kubernetes/pull/122735), [@avorima](https://github.com/avorima))
    - Fixed a regression in kubectl version `1.29.0` where the `--attach` flag was not honored.
       ([#122447](https://github.com/kubernetes/kubernetes/pull/122447), [@ardaguclu](https://github.com/ardaguclu))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    <pre>
    one, two, three = '一', '二', '三'
    </pre>
    
    <p>
    The <a href="#Blank_identifier">blank identifier</a> provides a way to
    ignore right-hand side values in an assignment:
    </p>
    
    <pre>
    _ = x       // evaluate x but ignore it
    x, _ = f()  // evaluate f() but ignore second result value
    </pre>
    
    <p>
    The assignment proceeds in two phases.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/jquery-3.6.3.min.map

    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Popular words */
        public static final String LABELS_POPULAR_WORD = "{labels.popularWord}";
    
        /** The key of the message: Ignored Failure Type */
        public static final String LABELS_IGNORE_FAILURE_TYPE = "{labels.ignoreFailureType}";
    
        /** The key of the message: Last Accessed */
        public static final String LABELS_LAST_ACCESS_TIME = "{labels.lastAccessTime}";
    
    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)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    			// Update replication decision for target based on existing object replciation rule.
    			dsc.Set(newReplicateTargetDecision(t, c.Replicate(opts), false))
    		}
    		return c.resync(oi, dsc, tgtStatuses)
    	}
    
    	// Ignore previous replication status when deciding if object can be re-replicated
    	userDefined := cloneMSS(oi.UserDefined)
    	delete(userDefined, xhttp.AmzBucketReplicationStatus)
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  8. cmd/metrics-v2.go

    		cacheInterval:    1 * time.Minute,
    		metricsGroupOpts: opts,
    	}
    	mg.RegisterRead(func(ctx context.Context) (metrics []MetricV2) {
    		objLayer := newObjectLayerFn()
    
    		// Fetch disk space info, ignore errors
    		metrics = make([]MetricV2, 0, 10)
    		storageInfo := objLayer.StorageInfo(ctx, true)
    		onlineDrives, offlineDrives := getOnlineOfflineDisksStats(storageInfo.Disks)
    		totalDrives := onlineDrives.Merge(offlineDrives)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

          clientTestRule.newClientBuilder()
            .connectionPool(ConnectionPool(0, 10, TimeUnit.MILLISECONDS))
            .build()
        val request = Request(server.url("/"))
        client.newCall(request).execute() // Ignore the response so it gets leaked then GC'd.
        awaitGarbageCollection()
        val message = testLogHandler.take()
        assertThat(message).contains(
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    UPDATE_POLICY_DAILY = daily; public static final String UPDATE_POLICY_INTERVAL = interval; public static final String CHECKSUM_POLICY_FAIL = fail; public static final String CHECKSUM_POLICY_WARN = warn; public static final String CHECKSUM_POLICY_IGNORE = ignore; private boolean enabled; private String updatePolicy; private String checksumPolicy; public void ArtifactRepositoryPo(); public void ArtifactRepositoryPo(boolean, String, String); public void setEnabled(boolean); public void setUpdatePolicy(String);...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160.1K bytes
    - Viewed (0)
Back to top