Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for value_or (0.11 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        def createJarWithProperties(String path, Map<String, ?> properties = [source: 1]) {
            def props = new Properties()
            def sw = new StringWriter()
            props.putAll(properties.collectEntries { k, v -> [k, String.valueOf(v)] })
            props.setProperty(path, testDirectory.path)
            props.store(sw, null)
            file(path).delete()
            createZip(path) {
                file("data.properties") << sw.toString()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if err != nil {
    		return err
    	}
    
    	if exists {
    		elem, ok := obj.(*storeElement)
    		if !ok {
    			return fmt.Errorf("non *storeElement returned from storage: %v", obj)
    		}
    		objVal.Set(reflect.ValueOf(elem.Object).Elem())
    	} else {
    		objVal.Set(reflect.Zero(objVal.Type()))
    		if !opts.IgnoreNotFound {
    			return storage.NewKeyNotFoundError(key, int64(readResourceVersion))
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/encoding/gob/encoder_test.go

    			if !strings.Contains(err.Error(), test.err) {
    				t.Errorf("wrong error decoding %v: wanted %s, got %v", test.in, test.err, err)
    			}
    			continue
    		}
    		// Get rid of the pointer in the rhs
    		val := reflect.ValueOf(test.out).Elem().Interface()
    		if !reflect.DeepEqual(test.in, val) {
    			t.Errorf("decoding singleton: expected %v got %v", test.in, val)
    		}
    	}
    }
    
    func TestStructNonStruct(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/encoding/json/encode.go

    	defer func() {
    		if r := recover(); r != nil {
    			if je, ok := r.(jsonError); ok {
    				err = je.error
    			} else {
    				panic(r)
    			}
    		}
    	}()
    	e.reflectValue(reflect.ValueOf(v), opts)
    	return nil
    }
    
    // error aborts the encoding by panicking with err wrapped in jsonError.
    func (e *encodeState) error(err error) {
    	panic(jsonError{err})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. src/sync/atomic/atomic_test.go

    	}
    	if p := reflect.ValueOf(&signed).Elem().Field(1).Addr().Pointer(); p&7 != 0 {
    		t.Fatalf("Int64 pointer = %#x, want 8-aligned", p)
    	}
    
    	var unsigned struct {
    		_ uint32
    		i Uint64
    	}
    	if o := reflect.TypeOf(&unsigned).Elem().Field(1).Offset; o != 8 {
    		t.Fatalf("Uint64 offset = %d, want 8", o)
    	}
    	if p := reflect.ValueOf(&unsigned).Elem().Field(1).Addr().Pointer(); p&7 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    			"foo": func(authority string, c *tls.Conn) RoundTripper { panic("") },
    		},
    		ReadBufferSize:  1,
    		WriteBufferSize: 1,
    	}
    	tr2 := tr.Clone()
    	rv := reflect.ValueOf(tr2).Elem()
    	rt := rv.Type()
    	for i := 0; i < rt.NumField(); i++ {
    		sf := rt.Field(i)
    		if !token.IsExported(sf.Name) {
    			continue
    		}
    		if rv.Field(i).IsZero() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    func validateFieldAllowList(value interface{}, allowedFields map[string]bool, errorText string, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    
    	reflectType, reflectValue := reflect.TypeOf(value), reflect.ValueOf(value)
    	for i := 0; i < reflectType.NumField(); i++ {
    		f := reflectType.Field(i)
    		if allowedFields[f.Name] {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    			// If it is, add a nop at the start of the function with a position
    			// equal to the start of the function.
    			// This ensures that runtime.FuncForPC(uintptr(reflect.ValueOf(fn).Pointer())).Name()
    			// returns the right answer. See issue 58300.
    			for p := s.pp.Text; p != nil; p = p.Link {
    				if p.As == obj.AFUNCDATA || p.As == obj.APCDATA || p.As == obj.ATEXT || p.As == obj.ANOP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    // errno returns v's underlying uintptr, else 0.
    //
    // TODO: remove this helper function once http2 can use build
    // tags. See comment in isClosedConnError.
    func http2errno(v error) uintptr {
    	if rv := reflect.ValueOf(v); rv.Kind() == reflect.Uintptr {
    		return uintptr(rv.Uint())
    	}
    	return 0
    }
    
    // isClosedConnError reports whether err is an error from use of a closed
    // network connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-61800`](https://youtrack.jetbrains.com/issue/KT-61800) Analysis API: Provide separate declared member scopes for non-static and static callables
    - [`KT-61255`](https://youtrack.jetbrains.com/issue/KT-61255) Analysis API: Get rid of `valueOf`, `values` and `entries` from a declared member scope
    - [`KT-62466`](https://youtrack.jetbrains.com/issue/KT-62466) Expected type for functional expression should include inferred types
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top