Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,181 for then (0.1 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // First, they are sorted by number of free CPUs in the sockets that contain them. Then, for each
    // socket they are sorted by number of free CPUs that they contain. The order is always ascending.
    // In other words, the relative order of two NUMA nodes is determined as follows:
    //  1. If the two NUMA nodes belong to different sockets, the NUMA node in the socket with the
    //     smaller amount of free CPUs appears first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. hack/ginkgo-e2e.sh

      ginkgo_args+=("--silence-skips")
    fi
    
    if [[ "${GINKGO_FORCE_NEWLINES}" == "y" ]]; then
      ginkgo_args+=("--force-newlines")
    fi
    
    if [[ "${GINKGO_NO_COLOR}" == "y" ]]; then
      ginkgo_args+=("--no-color")
    fi
    
    # The --host setting is used only when providing --auth_config
    # If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-kubeapiserver.sh

        params_ref+=" --storage-media-type=${STORAGE_MEDIA_TYPE}"
      fi
    
      if [[ -n "${ETCD_COMPACTION_INTERVAL_SEC:-}" ]]; then
        params_ref+=" --etcd-compaction-interval=${ETCD_COMPACTION_INTERVAL_SEC}s"
      fi
    }
    
    # Starts kubernetes apiserver.
    # It prepares the log file, loads the docker image, calculates variables, sets them
    # in the manifest file, and then copies the manifest file to /etc/kubernetes/manifests.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            assertTaskOutputNotCached(dirTask)
    
            when:
            cleanBuildDir()
            withBuildCache().run(dirTask, fileTask)
            then:
            // Outcome should look the same as if the build was run in the opposite order (fileTask then dirTask)
            fileTaskOutput.assertExists()
            dirTaskOutput.assertExists()
            // fileTask can be from the cache, but the dirTask cannot due to a cache miss
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            !manager.hasListeners(TestFooListener)
    
            when:
            manager.getBroadcaster(TestFooListener)
    
            then:
            !manager.hasListeners(TestFooListener)
    
            when:
            manager.addListener(fooListener1)
    
            then:
            manager.hasListeners(TestFooListener)
            !manager.hasListeners(TestBarListener)
    
            when:
            manager.removeListener(fooListener1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            skipped taskPath
            outputFile.text == "input text"
    
            when:
            unrelatedInputFile.text = "changed input"
            succeeds taskPath
    
            then:
            executedAndNotSkipped taskPath
            outputFile.text == "input text"
    
            when:
            outputFile.text = "that should not be the output"
            succeeds taskPath
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. hack/make-rules/test-e2e-node.sh

      # Get the compute project
      project=$(gcloud info --format='value(config.project)')
      if [[ ${project} == "" ]]; then
        echo "Could not find gcloud project when running: \`gcloud info --format='value(config.project)'\`"
        exit 1
      fi
    
      # Check if any of the images specified already have running instances.  If so reuse those instances
      # by moving the IMAGE to a HOST
      if [[ ${images} != "" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

                            into "/not-the-root"
                        }
                    }
                }
            """
    
            when:
            succeeds("installDist")
    
            then:
            file('build/install/sample/').allDescendants() == ["not-the-root/bin/sample", "not-the-root/bin/sample.bat", "not-the-root/lib/sample.jar"] as Set
            assert file("build/install/sample/not-the-root/bin/sample").permissions == "rwxr-xr-x"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

                }
            """
    
            when:
            target.createFile()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            0 * _
    
            when:
            invalidate(snapshotInsideFirstWatchableHierarchy.absolutePath)
            then:
            1 * watcher.stopWatching({ equalIgnoringOrder(it, [file("first")]) })
            0 * _
    
            when:
            buildFinished()
            then:
            0 * _
    
            when:
            addSnapshotInWatchableHierarchy(file("first"))
            then:
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top