Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 338 for hard (0.16 sec)

  1. CHANGELOG/CHANGELOG-1.33.md

    - The `DeclarativeValidation` feature gate is enabled by default. When enabled, mismatches with existing hand written validation is reported via metrics.
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 10 01:15:24 UTC 2025
    - 334.8K bytes
    - Viewed (0)
  2. internal/grid/connection.go

    		if err != nil {
    			if !xnet.IsNetworkOrHostDown(err, true) {
    				gridLogIf(ctx, fmt.Errorf("ws writeMessage: %w", err))
    			}
    			return
    		}
    		if cap(merged) > writeBufferSize*8 {
    			// If we had to send an excessively large package, reset size.
    			merged = make([]byte, 0, writeBufferSize)
    		}
    		if !writeBuffer() {
    			return
    		}
    	}
    }
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 46.9K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // ----------------------------------------------------------------------
            // I'm leaving the setting of system properties here as not to break
            // the SystemPropertyProfileActivator. This won't harm embedding. jvz.
            // ----------------------------------------------------------------------
            Set<String> sys = SystemProperties.getSystemProperties().stringPropertyNames();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    - Updated kube-apiserver's priority & fairness work estimator such that 'max seats' is MIN(0.15 x nominalCL, nominalCL / handSize)
      
      This fixes a bug where clients with requests using hand size x max seats greater than the nominal concurrency limit can starve other requests in the same priority level. ([#118601](https://github.com/kubernetes/kubernetes/pull/118601), [@andrewsykim](https://github.com/andrewsykim))
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Fri Sep 05 03:47:18 UTC 2025
    - 456.9K bytes
    - Viewed (1)
  5. src/main/resources/fess_config.properties

    paging.search.page.start=0
    # Default size of search results per page.
    paging.search.page.size=10
    # Maximum size of search results per page.
    paging.search.page.max.size=100
    
    # searchlog
    searchlog.agg.shard.size=-1
    # Request headers to include in search log.
    searchlog.request.headers=
    # Batch size for search log processing.
    searchlog.process.batch_size=100
    
    # Minimum width for HTML images in thumbnails.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  6. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

    import org.apache.maven.model.RepositoryPolicy;
    import org.apache.maven.model.Resource;
    import org.apache.maven.model.Scm;
    import org.apache.maven.model.Site;
    import org.codehaus.plexus.util.xml.Xpp3Dom;
    
    /**
     * This is a hand-crafted prototype of the default model merger that should eventually be generated by Modello by a new
     * Java plugin. Code structure to merge source (read-only) object into the target object is:<ul>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  7. cmd/testdata/xl-meta-merge.zip

    recommended way to upgrade MinIO. > NOTE: requires internet access to update directly from <https://dl.min.io>, optionally you can host any mirrors at <https://my-artifactory.example.com/minio/> - For deployments that installed the MinIO server binary by hand, use [`mc admin update`](https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-update.html) ```sh mc admin update <minio alias, e.g., myminio> ``` - For deployments without external internet access (e.g. airgapped environments), download...
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    		if osErrToFileErr(err) == errFileNotFound {
    			resp = checkPartFileNotFound
    		}
    		return resp
    	}
    	if st.Mode().IsDir() {
    		resp = checkPartFileNotFound
    		return resp
    	}
    	// Check if shard is truncated.
    	if st.Size() < expectedSize {
    		resp = checkPartFileCorrupt
    		return resp
    	}
    	return checkPartSuccess
    }
    
    // CheckParts check if path has necessary parts available.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 91.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
      }
    
      /*
       * Note: the following classes have a lot of duplicate code. It sucks, but it saves a lot of
       * memory. If only Java had mixins!
       */
    
      /** Base class for {@link InternalEntry} implementations for strong keys. */
      abstract static class AbstractStrongKeyEntry<K, V, E extends InternalEntry<K, V, E>>
          implements InternalEntry<K, V, E> {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 89.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Fixes a bug that could result in the EndpointSlice controller unnecessarily updating EndpointSlices associated with a Service that had Topology Aware Hints enabled. ([#105267](https://github.com/kubernetes/kubernetes/pull/105267), [@llhuii](https://github.com/llhuii))
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top