Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,188 for adown (0.06 sec)

  1. android/guava-tests/test/com/google/common/io/IoTestCase.java

          }
          copy(resourceUrl, file);
        }
    
        return file;
      }
    
      /**
       * Creates a new temp dir for testing. The returned directory and all contents of it will be
       * deleted in the tear-down for this test.
       */
      protected final File createTempDir() throws IOException {
        File tempFile = File.createTempFile("IoTestCase", "");
        if (!tempFile.delete() || !tempFile.mkdir()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/testing/testserver.go

    	TmpDir               string       // Temp Dir used, by the apiserver
    }
    
    // StartTestServer starts a kube-scheduler. A rest client config and a tear-down func,
    // and location of the tmpdir are returned.
    //
    // Note: we return a tear-down func instead of a stop channel because the later will leak temporary
    //
    //	files that because Golang testing's call to os.Exit will not give a stop channel go routine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 10:35:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. cluster/skeleton/util.sh

    }
    
    # Instantiate a kubernetes cluster
    function kube-up {
    	echo "Skeleton Provider: kube-up not implemented" 1>&2
    }
    
    # Delete a kubernetes cluster
    function kube-down {
    	echo "Skeleton Provider: kube-down not implemented" 1>&2
    }
    
    # Execute prior to running tests to build a release if required for env
    function test-build-release {
    	echo "Skeleton Provider: test-build-release not implemented" 1>&2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 13 00:54:20 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InheritedMethodsInterceptionTest.groovy

            "down-casted direct subclass"     | new InheritedMethodTestReceiver.A() as InheritedMethodTestReceiver | "Hello from: InheritedMethodTestReceiver\$A"
            "down-casted transitive subclass" | new InheritedMethodTestReceiver.B() as InheritedMethodTestReceiver | "Hello from: InheritedMethodTestReceiver\$B"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/graceful_shutdown_test.go

    // It expects that all active connections will be finished (without any errors) before the server exits.
    //
    // The test sends 25 requests to the target server in parallel. Each request is held by the target server for 60s.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/heap.go

    			break
    		}
    		(*h)[n], (*h)[p] = (*h)[p], (*h)[n]
    		n = p
    	}
    }
    
    func (h *heap) pop() loader.Sym {
    	r := (*h)[0]
    	n := len(*h) - 1
    	(*h)[0] = (*h)[n]
    	*h = (*h)[:n]
    
    	// sift down
    	i := 0
    	for {
    		c := 2*i + 1 // left child
    		if c >= n {
    			break
    		}
    		if c1 := c + 1; c1 < n && (*h)[c1] < (*h)[c] {
    			c = c1 // right child
    		}
    		if (*h)[i] <= (*h)[c] {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 16:55:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/testing/testserver.go

    	TmpDir               string       // Temp Dir used, by the apiserver
    }
    
    // StartTestServer starts a kube-controller-manager. A rest client config and a tear-down func,
    // and location of the tmpdir are returned.
    //
    // Note: we return a tear-down func instead of a stop channel because the later will leak temporary
    // files that because Golang testing's call to os.Exit will not give a stop channel go routine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int.go

    )
    
    func init() {
    	intPool.New = func() interface{} {
    		return &big.Int{}
    	}
    }
    
    // scaledValue scales given unscaled value from scale to new Scale and returns
    // an int64. It ALWAYS rounds up the result when scale down. The final result might
    // overflow.
    //
    // scale, newScale represents the scale of the unscaled decimal.
    // The mathematical value of the decimal is unscaled * 10**(-scale).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  9. releasenotes/notes/cni-no-sh.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 48746
    releaseNotes:
      - |
        **Fixed** an issue causing Istio CNI to stop functioning on minimal/locked down nodes (such as no `sh` binary).
        The new logic runs with no external dependencies, and will attempt to continue if errors are encountered (which could be caused by things like SELinux rules).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 21:29:52 UTC 2024
    - 445 bytes
    - Viewed (0)
  10. testing/performance/docs/performance-bisect.md

    <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
    **Table of Contents**  *generated with [DocToc](https://github.com/thlorenz/doctoc)*
    
    - [Tracking down performance regressions with `git bisect`](#tracking-down-performance-regressions-with-git-bisect)
      - [Identify the test which caused the regression](#identify-the-test-which-caused-the-regression)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top