Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for honoured (0.2 sec)

  1. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// Note that this is honored on a best-effort basis, and so it does not offer guarantees on
    	// pod deletion order.
    	// The implicit deletion cost for pods that don't set the annotation is 0, negative values are permitted.
    	//
    	// This annotation is beta-level and is only honored when PodDeletionCost feature is enabled.
    	PodDeletionCost = "controller.kubernetes.io/pod-deletion-cost"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. pkg/registry/certificates/certificates/storage/metrics_test.go

    			if got := testHon.signer; tt.wantHonored && tt.wantSigner != got {
    				t.Errorf("honored signer: want %v, got %v", tt.wantSigner, got)
    			}
    
    			if got := testReq.called; tt.wantRequested != got {
    				t.Errorf("requested inc: want %v, got %v", tt.wantRequested, got)
    			}
    
    			if got := testHon.called; tt.wantHonored != got {
    				t.Errorf("honored inc: want %v, got %v", tt.wantHonored, got)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerThreadRegistry.java

         *
         * You should avoid using this method and prefer {@link #runAsWorkerThread(Runnable)} instead. This method is here to allow some backwards compatibility constraints to be honored.
         */
        void runAsUnmanagedWorkerThread(Runnable action);
    
        /**
         * Starts a new lease for the current thread. Marks the reservation of a lease. Blocks until a lease is available.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. cmd/os_other.go

    import (
    	"io"
    	"os"
    	"syscall"
    )
    
    func access(name string) error {
    	_, err := os.Lstat(name)
    	return err
    }
    
    func osMkdirAll(dirPath string, perm os.FileMode, _ string) error {
    	// baseDir is not honored in plan9 and solaris platforms.
    	return os.MkdirAll(dirPath, perm)
    }
    
    // readDirFn applies the fn() function on each entries at dirPath, doesn't recurse into
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 13 15:14:36 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

            source = Buffer().writeUtf8(multipart),
          )
    
        assertFailsWith<EOFException> {
          parts.nextPart()
        }
      }
    
      @Test fun `lf instead of crlf boundary is not honored`() {
        val multipart =
          """
          |--simple boundary
          |
          |abcd
          |--simple boundary
          |
          |efgh
          |--simple boundary--
          """.trimMargin()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            then:
            assert eclipseProject.classpath.empty
            eclipseProject.projectDependencies.collect {it.path}  == ['b1']
        }
    
        def "EclipseProject model honours custom project name"() {
            when:
            buildB.buildFile << """
                subprojects {
                    apply plugin: 'eclipse'
                    eclipse {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueueTest.kt

            )
    
            assertThat(
                subject.nextGroup(),
                equalTo(requestsInGroup1.reversed())
            )
        }
    
        @Test
        fun `#nextGroup honours timeout`() {
    
            val subject = ConcurrentGroupingQueue<Int> { false }
    
            val pushElementSignal = CountDownLatch(1)
            thread {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                    |:a
                    |\\--- :b
                    |     \\--- :a (*)
                    |
                    |(*) - details omitted (listed previously)""".stripMargin()
            }
        }
    
        def "honours mustRunAfter task ordering"() {
            buildFile << """
                task a {
                    mustRunAfter 'b'
                }
                task b
                task c(dependsOn: ['a', 'b'])
                task d
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonIntegrationTest.groovy

            when:
            fails("runInWorker")
    
            then:
            failureCauseContains('Setting the working directory of a worker is not supported')
        }
    
        def "interesting worker daemon fork options are honored"() {
            OptionsVerifier optionsVerifier = new OptionsVerifier(file('process.json'))
            optionsVerifier.with {
                minHeap("128m")
                maxHeap("128m")
                systemProperty("foo", "bar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. cmd/os_windows.go

    	"os"
    	"path/filepath"
    	"syscall"
    )
    
    func access(name string) error {
    	_, err := os.Lstat(name)
    	return err
    }
    
    func osMkdirAll(dirPath string, perm os.FileMode, _ string) error {
    	// baseDir is not honored in windows platform
    	return os.MkdirAll(dirPath, perm)
    }
    
    // readDirFn applies the fn() function on each entries at dirPath, doesn't recurse into
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top