Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 170 for epstest (0.14 sec)

  1. src/cmd/asm/internal/asm/expr_test.go

    // license that can be found in the LICENSE file.
    
    package asm
    
    import (
    	"cmd/asm/internal/lex"
    	"strings"
    	"testing"
    	"text/scanner"
    )
    
    type exprTest struct {
    	input  string
    	output int64
    	atEOF  bool
    }
    
    var exprTests = []exprTest{
    	// Simple
    	{"0", 0, true},
    	{"3", 3, true},
    	{"070", 8 * 7, true},
    	{"0x0f", 15, true},
    	{"0xFF", 255, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. cmd/batch-expire_test.go

            greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
          purge:
              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
              # retainVersions: 5 # keep the latest 5 versions of the object.
      
        - type: deleted # objects with delete marker as their latest version
          name: NAME # match object names that satisfy the wildcard expression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.status.yaml.golden

    Frank Budinsky <******@****.***> 1699583427 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:27 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    A test class is available at `app/src/test/java/authoring/tutorial/AppTest.java`:
    
    .AppTest.java
    [source, java]
    ----
    package authoring.tutorial;
    
    import org.junit.jupiter.api.Test;
    import static org.junit.jupiter.api.Assertions.*;
    
    class AppTest {
        @Test void appHasAGreeting() {
            App classUnderTest = new App();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    )
    
    func createTestRuntimeManager() (*apitest.FakeRuntimeService, *apitest.FakeImageService, *kubeGenericRuntimeManager, error) {
    	return customTestRuntimeManager(&credentialprovider.BasicDockerKeyring{})
    }
    
    func customTestRuntimeManager(keyring *credentialprovider.BasicDockerKeyring) (*apitest.FakeRuntimeService, *apitest.FakeImageService, *kubeGenericRuntimeManager, error) {
    	fakeRuntimeService := apitest.NewFakeRuntimeService()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. pilot/pkg/simulation/traffic.go

    		})
    	}
    }
    
    func hasFilterOnPort(l *listener.Listener, filter string, port int) bool {
    	got, f := xdstest.ExtractListenerFilters(l)[filter]
    	if !f {
    		return false
    	}
    	if got.FilterDisabled == nil {
    		return true
    	}
    	return !xdstest.EvaluateListenerFilterPredicates(got.FilterDisabled, port)
    }
    
    func (sim *Simulation) Run(input Call) (result Result) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java

          Runnable task, @ParametricNullness T result);
    
      /**
       * {@inheritDoc}
       *
       * <p>All elements in the returned list must be {@link ListenableFuture} instances. The easiest
       * way to obtain a {@code List<ListenableFuture<T>>} from this method is an unchecked (but safe)
       * cast:
       *
       * <pre>
       *   {@code @SuppressWarnings("unchecked") // guaranteed by invokeAll contract}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 10:45:35 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_fossil.txt

    # and parsed correctly.
    # Verifies golang.org/issue/42323.
    
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get' for the fossil repo will fail if fossil
    # is unable to determine your fossil user. Easiest
    # way to set it for use by 'go get' is specifying
    # a any non-empty $USER; the value doesn't otherwise matter.
    env USER=fossiluser
    env FOSSIL_HOME=$WORK/home
    
    # Attempt to get the latest version of a fossil repo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/CppProjectInitDescriptor.java

            return Collections.singleton(BuildInitTestFramework.CPPTest);
        }
    
        @Override
        public BuildInitTestFramework getDefaultTestFramework(ModularizationOption modularizationOption) {
            return BuildInitTestFramework.CPPTest;
        }
    
        @Override
        public Optional<String> getFurtherReading(InitSettings settings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/term/README.md

    [![Go Reference](https://pkg.go.dev/badge/golang.org/x/term.svg)](https://pkg.go.dev/golang.org/x/term)
    
    This repository provides Go terminal and console support packages.
    
    ## Download/Install
    
    The easiest way to install is to run `go get -u golang.org/x/term`. You can
    also manually git clone the repository to `$GOPATH/src/golang.org/x/term`.
    
    ## Report Issues / Send Patches
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 727 bytes
    - Viewed (0)
Back to top