Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for o2k2 (0.33 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	// If the /status subresource endpoint is installed, update is not allowed to set status.
    	if a.status != nil {
    		_, ok1 := newCustomResource["status"]
    		_, ok2 := oldCustomResource["status"]
    		switch {
    		case ok2:
    			newCustomResource["status"] = oldCustomResource["status"]
    		case ok1:
    			delete(newCustomResource, "status")
    		}
    	}
    
    	// except for the changes to `metadata`, any other changes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    }
                }
                tasks.register<Task>("ok2") {
                    val prop = objects.property(String::class.java)
                    prop.set(provider { "abc" })
                    doLast { println("$S{name} -> value = $S{prop.get()}") }
                }
                """
            )
    
            assertThat(
                build("broken", "ok1", "ok2").output,
                allOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    		d.error = true
    		return 0, false
    	}
    	return uint32(p[3]) | uint32(p[2])<<8 | uint32(p[1])<<16 | uint32(p[0])<<24, true
    }
    
    func (d *dataIO) big8() (n uint64, ok bool) {
    	n1, ok1 := d.big4()
    	n2, ok2 := d.big4()
    	if !ok1 || !ok2 {
    		d.error = true
    		return 0, false
    	}
    	return (uint64(n1) << 32) | uint64(n2), true
    }
    
    func (d *dataIO) byte() (n byte, ok bool) {
    	p := d.read(1)
    	if len(p) < 1 {
    		d.error = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. cmd/storage-datatypes.go

    }
    
    // Equals checks if fi(FileInfo) matches ofi(FileInfo)
    func (fi FileInfo) Equals(ofi FileInfo) (ok bool) {
    	typ1, ok1 := crypto.IsEncrypted(fi.Metadata)
    	typ2, ok2 := crypto.IsEncrypted(ofi.Metadata)
    	if ok1 != ok2 {
    		return false
    	}
    	if typ1 != typ2 {
    		return false
    	}
    	if fi.IsCompressed() != ofi.IsCompressed() {
    		return false
    	}
    	if !fi.TransitionInfoEquals(ofi) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    				"object.spec.string.findAll('[0-9]+').size() > 0",           // kubernetes string lib
    				"object.spec.list.isSorted()",                               // kubernetes list lib
    				"url(object.spec.endpoint).getHostname() in ['ok1', 'ok2']", // kubernetes url lib
    			},
    		},
    		{
    			name: "valid request",
    			expressions: []string{
    				"request.kind.group == 'example.com' && request.kind.version == 'v1' && request.kind.kind == 'Fake'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/go/scanner/scanner.go

    	// 30 bits allows for some additional space before wrapping an int32.
    	// Keep this consistent with cmd/compile/internal/syntax.PosMax.
    	const maxLineCol = 1 << 30
    	var line, col int
    	i2, n2, ok2 := trailingDigits(text[:i-1])
    	if ok2 {
    		//line filename:line:col
    		i, i2 = i2, i
    		line, col = n2, n
    		if col == 0 || col > maxLineCol {
    			s.error(offs+i2, "invalid column number: "+string(text[i2:]))
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

                            System.out.println("Locale in use: " + locale);
                        }
    
                        @TestTemplate
                        @Tag("TagA")
                        public void ok2(Locale locale) {
                            System.out.println("Locale in use: " + locale);
                        }
                    }
                """)
                sourceFile("SomeMoreLocaleTests.java").withSource("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                            System.out.println("Locale in use: " + LocaleHolder.get());
                        }
    
                        @Test
                        @Category(CategoryA.class)
                        public void ok2() {
                            System.out.println("Locale in use: " + LocaleHolder.get());
                        }
                    }
                """)
                sourceFile("SomeMoreLocaleTests.java").withSource("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. src/archive/tar/writer_test.go

    			testWrite{"Kilts", 5, nil},
    			testHeader{Header{Name: "dir/"}, nil},
    			testClose{nil},
    		},
    	}}
    
    	equalError := func(x, y error) bool {
    		_, ok1 := x.(headerError)
    		_, ok2 := y.(headerError)
    		if ok1 || ok2 {
    			return ok1 && ok2
    		}
    		return x == y
    	}
    	for _, v := range vectors {
    		t.Run(path.Base(v.file), func(t *testing.T) {
    			const maxSize = 10 << 10 // 10KiB
    			buf := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    					sb.WriteByte(',')
    					id = id[3:]
    				} else if len(id) > 4 && id[1] == 'u' && id[4] == '$' {
    					dig1, ok1 := hexDigit(id[2])
    					dig2, ok2 := hexDigit(id[3])
    					val := (dig1 << 4) | dig2
    					if !ok1 || !ok2 || dig1 > 7 || val < ' ' {
    						valid = false
    					} else {
    						sb.WriteByte(val)
    						id = id[5:]
    					}
    				} else if len(id) > 3 && id[3] == '$' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top