Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 251 for Answers (0.29 sec)

  1. src/encoding/gob/decode.go

    			value = value.Addr()
    		}
    		state.dec.decodeGobDecoder(ut, state, value)
    	}
    	return &op
    }
    
    // compatibleType asks: Are these two gob Types compatible?
    // Answers the question for basic types, arrays, maps and slices, plus
    // GobEncoder/Decoder pairs.
    // Structs are considered ok; fields will be checked later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  2. docs/en/data/people.yml

    maintainers:
    - login: tiangolo
      answers: 1885
      prs: 577
      avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=740f11212a731f56798f558ceddb0bd07642afa7&v=4
      url: https://github.com/tiangolo
    experts:
    - login: Kludex
      count: 608
      avatarUrl: https://avatars.githubusercontent.com/u/7353520?u=62adc405ef418f4b6c8caa93d3eb8ab107bc4927&v=4
      url: https://github.com/Kludex
    - login: dmontagu
      count: 241
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r62/CapturingMultipleUserInputCrossVersionSpec.groovy

                return "$question (default: $defaultAnswer)"
            }
    
            String getAnswerPrefix() {
                return "Your answer to '$question' was:"
            }
    
            String answerOutput(String answer = defaultAnswer) {
                return "$answerPrefix $answer"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	case "[]string", "[]*string":
    		return "string"
    	case "[]int32", "[]*int32":
    		return "integer"
    
    	default:
    		return typeName
    	}
    }
    
    // defaultStorageMetadata provides default answers to rest.StorageMetadata.
    type defaultStorageMetadata struct{}
    
    // defaultStorageMetadata implements rest.StorageMetadata
    var _ rest.StorageMetadata = defaultStorageMetadata{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/math/cmplx/cmath_test.go

    }
    
    // The expected results below were computed by the high precision calculators
    // at https://keisan.casio.com/.  More exact input values (array vc[], above)
    // were obtained by printing them with "%.26f".  The answers were calculated
    // to 26 digits (by using the "Digit number" drop-down control of each
    // calculator).
    
    var abs = []float64{
    	9.2022120669932650313380972e+00,
    	7.7438239742296106616261394e+00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    const (
    	CMPlt = Cmp(-1)
    	CMPeq = Cmp(0)
    	CMPgt = Cmp(1)
    )
    
    // Compare compares types for purposes of the SSA back
    // end, returning a Cmp (one of CMPlt, CMPeq, CMPgt).
    // The answers are correct for an optimizer
    // or code generator, but not necessarily typechecking.
    // The order chosen is arbitrary, only consistency and division
    // into equivalence classes (Types that compare CMPeq) matters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. src/time/time.go

    			d1 >>= 1
    		}
    		r = Duration(u0)
    	}
    
    	if neg && r != 0 {
    		// If input was negative and not an exact multiple of d, we computed q, r such that
    		//	q*d + r = -t
    		// But the right answers are given by -(q-1), d-r:
    		//	q*d + r = -t
    		//	-q*d - r = t
    		//	-(q-1)*d + (d - r) = t
    		qmod2 ^= 1
    		r = d - r
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    				return pathSet{}, true, m, true
    			}
    			// A main module can only be set to its own version.
    			continue
    		}
    
    		vr, ok := r.resolvedVersion[m.Path]
    		if !ok {
    			// m is a viable answer to the query, but other answers may also
    			// still be viable.
    			filtered.pkgMods = append(filtered.pkgMods, m)
    			continue
    		}
    
    		if vr.version != m.Version {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testfortran/testdata/testprog/answer.f90

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 294 bytes
    - Viewed (0)
  10. src/math/all_test.go

    }
    
    // The expected results below were computed by the high precision calculators
    // at https://keisan.casio.com/.  More exact input values (array vf[], above)
    // were obtained by printing them with "%.26f".  The answers were calculated
    // to 26 digits (by using the "Digit number" drop-down control of each
    // calculator).
    var acos = []float64{
    	1.0496193546107222142571536e+00,
    	6.8584012813664425171660692e-01,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top