Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 337 for forced (0.62 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         *     or `Nothing` types (depending on the typing position). This can produce a lot of typing relationships which do not make any sense,
         *     such as `Int = UnresolvedClass`.
         *  2. It forces the user to handle error types explicitly, which reduces the risk of false positives.
         *  3. It is consistent with most of the behavior of the Kotlin compiler.
         */
        STRICT,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/network.go

    	return n.network
    }
    
    // onNetworkChange is fired if the default network is changed either via the namespace label or mesh-networks
    func (c *Controller) onNetworkChange() {
    	// the network for endpoints are computed when we process the events; this will fix the cache
    	// NOTE: this must run before the other network watcher handler that creates a force push
    	if err := c.syncPods(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"binaryData": "BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. cmd/kubelet/app/plugins.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    // This file exists to force the desired plugin implementations to be linked.
    import (
    	"k8s.io/component-base/featuregate"
    	"k8s.io/utils/exec"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/configmap"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

     * control the lifecycle of the mojo itself, and to inject other beans.
     * </p>
     * <p>
     * The mojo class can also be injected with an {@link Execute} annotation to specify a
     * forked lifecycle.
     * </p>
     * <p>
     * The {@link Parameter} annotation can be added on fields to inject data
     * from the plugin configuration or from other components.
     * </p>
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    		actual.Version = defaultGVK.Version
    	}
    	return actual
    }
    
    // diagnose returns the diagnostic encoding of a well-formed CBOR data item.
    func diagnose(data []byte) string {
    	diag, err := modes.Diagnostic.Diagnose(data)
    	if err != nil {
    		// Since the input must already be well-formed CBOR, converting it to diagnostic
    		// notation should not fail.
    		util.HandleError(err)
    
    		return hex.EncodeToString(data)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/sync/pool_test.go

    				p.Get()
    			}
    		}
    	})
    }
    
    // Simulate object starvation in order to force Ps to steal objects
    // from other Ps.
    func BenchmarkPoolStarvation(b *testing.B) {
    	var p Pool
    	count := 100
    	// Reduce number of putted objects by 33 %. It creates objects starvation
    	// that force P-local storage to steal objects from other Ps.
    	countStarved := count - int(float32(count)*0.33)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_mipsx.go

    //go:noescape
    func spinUnlock(state *uint32)
    
    //go:nosplit
    func lockAndCheck(addr *uint64) {
    	// ensure 8-byte alignment
    	if uintptr(unsafe.Pointer(addr))&7 != 0 {
    		panicUnaligned()
    	}
    	// force dereference before taking lock
    	_ = *addr
    
    	spinLock(&lock.state)
    }
    
    //go:nosplit
    func unlock() {
    	spinUnlock(&lock.state)
    }
    
    //go:nosplit
    func Xadd64(addr *uint64, delta int64) (new uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/crossVersionTest/groovy/org/gradle/jvm/toolchain/internal/install/ProvisionedJdkReuseCrossVersionIntegrationTest.groovy

        }
    
        private def userHome = file('user-home')
        private def jdkDir = userHome.toPath().resolve("jdks")
    
        def setup() {
            // Use a JVM that will force a provisioning
            Jvm differentVersion = AvailableJavaHomes.differentVersion
    
            jdkRepository = new JdkRepository(differentVersion, "not_current_jdk.zip")
            uri = jdkRepository.start()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	validationDirective string
    }
    
    func (p *applyPatcher) applyPatchToCurrentObject(requestContext context.Context, obj runtime.Object) (runtime.Object, error) {
    	force := false
    	if p.options.Force != nil {
    		force = *p.options.Force
    	}
    	if p.fieldManager == nil {
    		panic("FieldManager must be installed to run apply")
    	}
    
    	patchObj := &unstructured.Unstructured{Object: map[string]interface{}{}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top