Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for 555 (0.02 sec)

  1. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

        }
    
        def "can interpolate properties in project plugins block"() {
            when:
            file("gradle.properties") << """
        foo = 333
        bar = 444
        foo.bar = 555
    """
            buildScript("""plugins {\n$code\n}""")
    
            then:
            succeeds "help"
    
            where:
            code << [
                    'id("noop").version("${foo}")',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xds_test.go

    			t.Fatalf("expected 1.1.1.1, got %v", endpoints["outbound|80||app.com"])
    		}
    
    		assertListEqual(t, xdstest.ExtractListenerNames(s.Listeners(proxy)), []string{
    			"0.0.0.0_80",
    			"5.5.5.5_443",
    			"virtualInbound",
    			"virtualOutbound",
    		})
    	})
    
    	t.Run("Ingress Listener", func(t *testing.T) {
    		s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    			ConfigString: scopeConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/mmu.go

            border-radius: 50%;
            color: #fff;
            background: #555;
            text-align: center;
            cursor: help;
          }
          .help > span {
            display: none;
          }
          .help:hover > span {
            display: block;
            position: absolute;
            left: 1.1em;
            top: 1.1em;
            background: #555;
            text-align: left;
            width: 20em;
            padding: 0.5em;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. test/recover.go

    	}()
    	defer g()
    	x = deflt
    	return
    }
    
    func test5() {
    	v := try(func() { panic(5) }, 55).(int)
    	if v != 5 {
    		println("wrong value", v, 5)
    		die()
    	}
    
    	s := try(func() {}, "hi").(string)
    	if s != "hi" {
    		println("wrong value", s, "hi")
    		die()
    	}
    
    	v = try1(func() { panic(5) }, 55).(int)
    	if v != 5 {
    		println("try1 wrong value", v, 5)
    		die()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            where:
            constantType | constantValue   | newValue
            'boolean'    | 'false'         | 'true'
            'byte'       | '(byte) 125'    | '(byte) 126'
            'short'      | '(short) 666'   | '(short) 555'
            'int'        | '55542'         | '444'
            'long'       | '5L'            | '689L'
            'float'      | '6f'            | '6.5f'
            'double'     | '7d'            | '7.2d'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. pkg/registry/batch/cronjob/strategy_test.go

    	}
    
    	updatedCronJob := &batch.CronJob{
    		ObjectMeta: metav1.ObjectMeta{Name: "bar", ResourceVersion: "4"},
    		Spec: batch.CronJobSpec{
    			Schedule: "5 5 5 * ?",
    		},
    		Status: batch.CronJobStatus{
    			LastScheduleTime: &now,
    		},
    	}
    
    	// ensure we do not change status
    	Strategy.PrepareForUpdate(ctx, updatedCronJob, cronJob)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_test.go

    			rawNodeIPs: []net.IP{
    				netutils.ParseIPSloppy("90.90.90.90"),
    				netutils.ParseIPSloppy("2001:db8::2"),
    			},
    			bindAddress:    "2001:db8::555",
    			expectedFamily: v1.IPv6Protocol,
    			expectedIPv4:   "90.90.90.90",
    			expectedIPv6:   "2001:db8::555",
    		},
    		{
    			name: "Dual stack, override primary family, IPv4",
    			rawNodeIPs: []net.IP{
    				netutils.ParseIPSloppy("2001:db8::2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/volume_manager_test.go

    						PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
    							ClaimName: "claimA",
    						},
    					},
    				},
    			},
    			SecurityContext: &v1.PodSecurityContext{
    				SupplementalGroups: []int64{555},
    			},
    		},
    	}
    	switch podMode {
    	case v1.PersistentVolumeBlock:
    		pod.Spec.Containers[0].VolumeDevices = []v1.VolumeDevice{
    			{
    				Name:       "vol1",
    				DevicePath: "/dev/vol1",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/base.css

        font-weight: normal;
    }
    
    tfoot {
        font-style: italic;
    }
    
    caption {
        background: #eee;
    }
    
    abbr, acronym {
        font-size: 85%;
        font-weight: bold;
        color: #555;
        text-transform: uppercase;
    }
    
    abbr[title], acronym[title] {
        cursor: help;
        border-bottom: 1px dotted #e5e5e5;
    }
    
    b, strong, dfn {
        font-weight: 700;
    }
    
    em, dfn {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue60982.go

    	case 549:
    		return 549
    	case 550:
    		return 550
    	case 551:
    		return 551
    	case 552:
    		return 552
    	case 553:
    		return 553
    	case 554:
    		return 554
    	case 555:
    		return 555
    	case 556:
    		return 556
    	case 557:
    		return 557
    	case 558:
    		return 558
    	case 559:
    		return 559
    	case 560:
    		return 560
    	case 561:
    		return 561
    	case 562:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 28 16:07:47 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top