Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,188 for adown (0.04 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/healthcheck-handler.go

    		w.Header().Set(xhttp.MinIOHealingDrives, strconv.Itoa(result.HealingDrives))
    	}
    	if !result.Healthy {
    		// As a maintenance call we are purposefully asked to be taken
    		// down, this is for orchestrators to know if we can safely
    		// take this server down, return appropriate error.
    		if opts.Maintenance {
    			writeResponse(w, http.StatusPreconditionFailed, nil, mimeNone)
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 6.5K 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. 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)
  7. 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)
  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. 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)
  10. src/go/parser/testdata/issue11377.src

    // parser after certain syntax errors.
    
    package p
    
    func bad1() {
        if f()) /* ERROR "expected ';', found '\)'" */ {
            return
        }
    }
    
    // There shouldn't be any errors down below.
    
    func F1() {}
    func F2() {}
    func F3() {}
    func F4() {}
    func F5() {}
    func F6() {}
    func F7() {}
    func F8() {}
    func F9() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 542 bytes
    - Viewed (0)
Back to top