Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 347 for foo3Jar (0.2 sec)

  1. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: foobar
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaProjectIntegrationTest.groovy

        <annotationProcessing enabled="false" useClasspath="true"/>
        <wildcardResourcePatterns>
          <entry name="!?*.groovy"/>
          <entry name="!?*.java"/>
          <entry name="!?*.fooBar"/>
        </wildcardResourcePatterns>
      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
        </modules>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultModuleIdentifierSpec.groovy

    class DefaultModuleIdentifierSpec extends Specification {
    
        def "has useful toString()"() {
            def module = DefaultModuleIdentifier.newId("org.foo", "bar")
    
            expect:
            module.toString().contains("org.foo:bar")
        }
    
        def "ids are equal when group, module and version are equal"() {
            def module = DefaultModuleIdentifier.newId("group", "module")
            def same = DefaultModuleIdentifier.newId("group", "module")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/util/iptables/iptables_test.go

    	}
    	cmd := iptablesCommand(protocol)
    	if !sets.New(fcmd.CombinedOutputLog[1]...).HasAll(cmd, "-t", "nat", "-N", "FOOBAR") {
    		t.Errorf("%s new chain: Expected cmd containing '%s -t nat -N FOOBAR', got %s", protocol, cmd, fcmd.CombinedOutputLog[2])
    	}
    	// Exists.
    	exists, err = runner.EnsureChain(TableNAT, Chain("FOOBAR"))
    	if err != nil {
    		t.Errorf("%s existing chain: Expected success, got %v", protocol, err)
    	}
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  5. src/syscall/mksyscall.pl

    			$asm .= "X";
    		}
    	}
    
    	# System call number.
    	my $funcname = "";
    	if($sysname eq "") {
    		$sysname = "SYS_$func";
    		$sysname =~ s/([a-z])([A-Z])/${1}_$2/g;	# turn FooBar into Foo_Bar
    		$sysname =~ y/a-z/A-Z/;
    		if($libc) {
    			$sysname =~ y/A-Z/a-z/;
    			$sysname = substr $sysname, 4;
    			$funcname = "libc_$sysname";
    		}
    	}
    	if($libc) {
    		if($funcname eq "") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue17918.go

    import (
    	"fmt"
    	"time"
    )
    
    var (
    	units = []struct {
    		divisor time.Duration
    		unit    rune
    	}{
    		{1000000, 's'},
    		{60, 'm'},
    		{60, 'h'},
    		{24, 'd'},
    		{7, 'w'},
    	}
    )
    
    func foobar(d time.Duration) string {
    	d /= time.Microsecond
    	unit := 'u'
    
    	for _, f := range units {
    		if d%f.divisor != 0 {
    			break
    		}
    		d /= f.divisor
    		unit = f.unit
    	}
    	return fmt.Sprintf("%d%c", d, unit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:31:27 UTC 2016
    - 619 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

                public class DeprecatedTask extends DefaultTask {
                    @TaskAction
                    void causeDeprecationWarning() {
                        DeprecationLogger.deprecateTask("thisIsADeprecatedTask").replaceWith("foobar").willBeRemovedInGradle9().undocumented().nagUser();
                        System.out.println("DeprecatedTask.causeDeprecationWarning() executed.");
                    }
    
                    public static void someFeature() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/BuildTask.java

         * <p>
         * The task path is a combination of its enclosing project's path and its name.
         * For example, in multi project build the {@code bar} task of the {@code foo} project has a path of {@code :foo:bar}.
         * In a single project build, the {@code bar} task of the lone project has a path of {@code :bar}.
         * <p>
         * This value corresponds to the value output by Gradle for the task during its normal progress logging.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    	Boolean   bool              `json:"boolean,omitempty"`
    	NamedStr  namedString       `json:"namedStr,omitempty"`
    	NamedBool namedBool         `json:"namedBool,omitempty"`
    	Foobar    bar               `json:"foobar,omitempty"`
    	Testmap   map[string]string `json:"testmap,omitempty"`
    }
    
    func (obj *foo) GetObjectKind() schema.ObjectKind { return schema.EmptyObjectKind }
    
    type baz struct {
    	Ptr  *int  `json:"ptr"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

        it.version = '0.0.1'
        group = 'org.test'
    }
    
    $common
    
    dependencies {
        conf 'foo:bar:1'
        conf project(':sub')
    }
    
    configurations.all {
      resolutionStrategy {
          dependencySubstitution { DependencySubstitutions subs ->
              subs.substitute(subs.module('foo:bar:1')).using(subs.project(':sub'))
          }
          failOnVersionConflict()
      }
    }
    
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
Back to top