Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for mount (0.19 sec)

  1. CHANGELOG/CHANGELOG-1.5.md

        * - gcr.io/google-containers/kube-dnsmasq-amd64
    * - Disable thin_ls due to excessive iops ([#43113](https://github.com/kubernetes/kubernetes/pull/43113), [@dashpole](https://github.com/dashpole))
        * - Ignore .mount cgroups, fixing dissappearing stats
        * - Fix wc goroutine leak
        * - Update aws-sdk-go dependency to 1.6.10
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.4.md

    * Changed default scsi controller type in vSphere Cloud Provider ([#38426](https://github.com/kubernetes/kubernetes/pull/38426), [@abrarshivani](https://github.com/abrarshivani))
    * Fix unmountDevice issue caused by shared mount in GCI ([#38411](https://github.com/kubernetes/kubernetes/pull/38411), [@jingxu97](https://github.com/jingxu97))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  3. fastapi/routing.py

    from starlette.routing import (
        BaseRoute,
        Match,
        compile_path,
        get_name,
        request_response,
        websocket_session,
    )
    from starlette.routing import Mount as Mount  # noqa
    from starlette.types import ASGIApp, Lifespan, Scope
    from starlette.websockets import WebSocket
    from typing_extensions import Annotated, Doc, deprecated
    
    
    def _prepare_response_content(
        res: Any,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - Fixed an issue where mount points could become local without calling `NodePublishVolume` after node rebooting.
       ([#119923](https://github.com/kubernetes/kubernetes/pull/119923), [@cvvz](https://github.com/cvvz))
    - Fixed cleanup of Pod volume mounts when a file was used as a subpath.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    			}
    
    			if qs.QStats.Avg.Count > 0 || qs.QStats.Curr.Count > 0 {
    				qt := qs.QStats
    				currInQueueBytes.Value = qt.Curr.Bytes
    				currInQueueCount.Value = qt.Curr.Count
    				avgQueueBytes.Value = qt.Avg.Bytes
    				avgQueueCount.Value = qt.Avg.Count
    				maxQueueBytes.Value = qt.Max.Bytes
    				maxQueueCount.Value = qt.Max.Count
    			}
    			activeWorkersCount.Value = float64(qs.ActiveWorkers.Curr)
    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)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFileConfigCA.java

            }
        }
    
        public void setAvailable_Count() {
            setAvailable_Count(null);
        }
    
        public void setAvailable_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setAvailable_Count("available", opLambda);
        }
    
        public void setAvailable_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 144.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/cbean/ca/bs/BsSearchLogCA.java

            }
        }
    
        public void setAccessType_Count() {
            setAccessType_Count(null);
        }
    
        public void setAccessType_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setAccessType_Count("accessType", opLambda);
        }
    
        public void setAccessType_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 115.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java

            }
        }
    
        public void setBusinessCategory_Count() {
            setBusinessCategory_Count(null);
        }
    
        public void setBusinessCategory_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setBusinessCategory_Count("businessCategory", opLambda);
        }
    
        public void setBusinessCategory_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
    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/config/cbean/ca/bs/BsWebConfigCA.java

            }
        }
    
        public void setAvailable_Count() {
            setAvailable_Count(null);
        }
    
        public void setAvailable_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setAvailable_Count("available", opLambda);
        }
    
        public void setAvailable_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 149K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        // no entry
        assertEquals(0, segment.count);
        assertNull(segment.remove(key, hash));
        assertEquals(0, segment.count);
    
        // same key
        table.set(index, entry);
        segment.count++;
        assertEquals(1, segment.count);
        assertSame(oldValue, segment.get(key, hash));
        assertSame(oldValue, segment.remove(key, hash));
        assertEquals(0, segment.count);
        assertNull(segment.get(key, hash));
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
Back to top