Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,715 for forced (0.1 sec)

  1. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // readOnlyRootFilesystem when set to true will force containers to run with a read only root file
      // system.  If the container specifically requests to run with a non-read only root file system
      // the PSP should deny the pod.
      // If set to false the container may run with a read only root file system if it wishes but it
      // will not be forced to.
      // +optional
      optional bool readOnlyRootFilesystem = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                    request.getRemoteRepositories());
    
            if (cached != null
                    // if the POM has no file, we cached a missing artifact, only return the cached data if no update forced
                    && (!request.isForceUpdate() || hasFile(cached.getPomArtifact()))) {
                return cached;
            }
    
            List<Dependency> dependencies;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  3. src/net/lookup_test.go

    	}
    
    	mustHaveExternalNetwork(t)
    
    	testLookupNoData(t, "default resolver")
    
    	func() {
    		defer forceGoDNS()()
    		testLookupNoData(t, "forced go resolver")
    	}()
    
    	func() {
    		defer forceCgoDNS()()
    		testLookupNoData(t, "forced cgo resolver")
    	}()
    }
    
    func testLookupNoData(t *testing.T, prefix string) {
    	attempts := 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. src/runtime/mstats.go

    	//
    	// "Allocated" heap objects include all reachable objects, as
    	// well as unreachable objects that the garbage collector has
    	// not yet freed. Specifically, HeapAlloc increases as heap
    	// objects are allocated and decreases as the heap is swept
    	// and unreachable objects are freed. Sweeping occurs
    	// incrementally between GC cycles, so these two processes
    	// occur simultaneously, and as a result HeapAlloc tends to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge_test.go

    			test.find(find) // Now we should be able to find things.
    			find(0, 0)      // The test should always fully exhaust the index.
    		})
    		t.Run("Force/"+test.name, func(t *testing.T) {
    			mark, find, _ := setup(t, true)
    			test.mark(mark)
    			test.find(find) // Finding should always work when forced.
    			find(0, 0)      // The test should always fully exhaust the index.
    		})
    	}
    	t.Run("Bg/MarkInterleaved", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. README.md

    - Read the release notes for MinIO *before* performing any upgrade, there is no forced requirement to upgrade to latest release upon every release. Some release may not be relevant to your setup, avoid upgrading production environments unnecessarily.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/syscall/exec_linux_test.go

    	if !strings.HasPrefix(strOut, expected) {
    		t.Errorf("expected prefix: %q", expected)
    	}
    }
    
    // Test for https://go.dev/issue/19661: unshare fails because systemd
    // has forced / to be shared
    func TestUnshareMountNameSpace(t *testing.T) {
    	const mountNotSupported = "mount is not supported: " // Output prefix indicating a test skip.
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/amd64/asm.go

    		v |= ld.MACHO_X86_64_RELOC_UNSIGNED << 28
    
    	case objabi.R_CALL:
    		v |= 1 << 24 // pc-relative bit
    		v |= ld.MACHO_X86_64_RELOC_BRANCH << 28
    
    		// NOTE: Only works with 'external' relocation. Forced above.
    	case objabi.R_PCREL:
    		v |= 1 << 24 // pc-relative bit
    		v |= ld.MACHO_X86_64_RELOC_SIGNED << 28
    	case objabi.R_GOTPCREL:
    		v |= 1 << 24 // pc-relative bit
    		v |= ld.MACHO_X86_64_RELOC_GOT_LOAD << 28
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/generic_test.go

    	// no events are expected because relist #1 set the old pod record which has the infra container
    	// running. relist #2 had the inspection error and therefore didn't modify either old or new.
    	// relist #3 forced the reinspection of the pod to retrieve its status, but because the list of
    	// containers was the same as relist #1, nothing "changed", so there are no new events.
    	assert.Exactly(t, []*PodLifecycleEvent{}, actualEvents)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    module("org:dep:2.2") {
                        module("org:external:1.4")
                    }
                }
            }
        }
    
        void "takes newest dynamic version when dynamic version forced"() {
            mavenRepo.module("org", "foo", '1.3.0').publish()
    
            mavenRepo.module("org", "foo", '1.4.1').publish()
            mavenRepo.module("org", "foo", '1.4.4').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top