Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 121 for derp (1.17 sec)

  1. src/cmd/go/internal/load/pkg.go

    		if p.Name == "main" && !p.Internal.ForceLibrary {
    			ldDeps, err := LinkerDeps(p)
    			if err != nil {
    				setError(err)
    				return
    			}
    			for _, dep := range ldDeps {
    				addImport(dep, false)
    			}
    		}
    	}
    
    	// Check for case-insensitive collisions of import paths.
    	// If modifying, consider changing checkPathCollisions() in
    	// src/cmd/go/internal/modcmd/vendor.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    			// consumed by the various "run test" actions. Below we
    			// add a dependence edge between the build action and the
    			// "write meta files" pseudo-action, and then another dep
    			// from writeCoverMetaAct to the run action. See the
    			// comment in runTest() at the definition of
    			// writeCoverMetaAct for more details.
    			run.Deps = append(run.Deps, writeCoverMetaAct)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    		return t.WriteBufferSize
    	}
    	return 4 << 10
    }
    
    func (t *Transport) readBufferSize() int {
    	if t.ReadBufferSize > 0 {
    		return t.ReadBufferSize
    	}
    	return 4 << 10
    }
    
    // Clone returns a deep copy of t's exported fields.
    func (t *Transport) Clone() *Transport {
    	t.nextProtoOnce.Do(t.onceSetNextProtoDefaults)
    	t2 := &Transport{
    		Proxy:                  t.Proxy,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // size. It also conditionally adds chunk headers, when in chunking mode.
    //
    // See the comment above (*response).Write for the entire write flow.
    type chunkWriter struct {
    	res *response
    
    	// header is either nil or a deep clone of res.handlerHeader
    	// at the time of res.writeHeader, if res.writeHeader is
    	// called and extra buffering is being done to calculate
    	// Content-Type and/or Content-Length.
    	header Header
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.dates.indexOf(timestamp('2005-02-01T00:00:00.000Z')) == -1",
    				"self.dates.lastIndexOf(timestamp('2005-02-01T00:00:00.000Z')) == -1",
    
    				// array, map and object types use structural equality (aka "deep equals")
    				"[[1], [2]].indexOf([1]) == 0",
    				"[{'a': 1}, {'b': 2}].lastIndexOf({'b': 2}) == 1",
    				"self.objs.indexOf(self.objs[1]) == 1",
    				"self.objs.lastIndexOf(self.objs[1]) == 2",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    "],"::placeholder":["terminal","jumpable"],"::selection":["terminal","jumpable"],"::slotted":["terminal"],"::spelling-error":["terminal"],"::target-text":["terminal"],"::file-selector-button":["terminal","actionable"],"::deep":["actionable"],"::v-deep":["actionable"],"::ng-deep":["actionable"],":after":["terminal","jumpable"],":before":["terminal","jumpable"],":first-letter":["terminal","jumpable"],":first-line":["terminal","jumpable"],":where":[],":is":[],":has":[],__default__:["terminal","acti...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        output = input / (bias + alpha * sqr_sum) ** beta
    
    For details, see [Krizhevsky et al., ImageNet classification with deep
    convolutional neural networks (NIPS 2012)](http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks).
      }];
    
      let arguments = (ins
        Arg<TensorOf<[TF_Bfloat16, TF_Float16, TF_Float32]>, [{4-D.}]>:$input,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-65704`](https://youtrack.jetbrains.com/issue/KT-65704) K2: `computeCommonSuperType` of flexible type with recursive captured type argument produces giant multi-level-deep type
    - [`KT-65410`](https://youtrack.jetbrains.com/issue/KT-65410) K2: ABSTRACT_CLASS_MEMBER_NOT_IMPLEMENTED  for 'removeAt' in KJK hierarchy
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    		},
    		"condition-update-source-type": {
    			isExpectedFailure: true,
    			oldVolume:         validVolume,
    			newVolume:         invalidPvSourceUpdateType,
    		},
    		"condition-update-source-deep": {
    			isExpectedFailure: true,
    			oldVolume:         validVolume,
    			newVolume:         invalidPvSourceUpdateDeep,
    		},
    		"csi-expansion-enabled-with-pv-secret": {
    			isExpectedFailure: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"trustBundle": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top