Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 165 for rewrite (0.14 sec)

  1. src/net/textproto/reader.go

    	state int
    }
    
    // Read satisfies reads by decoding dot-encoded data read from d.r.
    func (d *dotReader) Read(b []byte) (n int, err error) {
    	// Run data through a simple state machine to
    	// elide leading dots, rewrite trailing \r\n into \n,
    	// and detect ending .\r\n line.
    	const (
    		stateBeginLine = iota // beginning of line; initial state; must be zero
    		stateDot              // read . at beginning of line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

                        // This allows us to pass null to the constructor scenarios where the production code would not allow it.
                        // To switch to objectFactory, we would need to rewrite the tests to no longer pass null as a parameter.
                        // return TestUtil.newInstance(type, params)
                        assert type.constructors.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/func.go

    				// In this case, we know getg() always returns the same result within a given function
    				// and we want to avoid the temporaries, so we do the rewrite earlier than is typical.
    				n.SetOp(ir.OGETG)
    			}
    		}
    		return n
    	}
    
    	// multiple return
    	if top&(ctxMultiOK|ctxStmt) == 0 {
    		base.Errorf("multiple-value %v() in single-value context", l)
    		return n
    	}
    
    	n.SetType(l.Type().ResultsTuple())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    	-debug-gcc
    		Debugging option. Trace C compiler execution and output.
    	-dynimport file
    		Write list of symbols imported by file. Write to
    		-dynout argument or to standard output. Used by go
    		build when building a cgo package.
    	-dynlinker
    		Write dynamic linker as part of -dynimport output.
    	-dynout file
    		Write -dynimport output to file.
    	-dynpackage package
    		Set Go package for -dynimport output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache.go

    		c.trimSubdir(subdir, cutoff)
    	}
    
    	// Ignore errors from here: if we don't write the complete timestamp, the
    	// cache will appear older than it is, and we'll trim it again next time.
    	var b bytes.Buffer
    	fmt.Fprintf(&b, "%d", now.Unix())
    	if err := lockedfile.Write(filepath.Join(c.dir, "trim.txt"), &b, 0666); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    	// TODO: Move to well known.
    	StatefulSessionFilter = "envoy.filters.http.stateful_session"
    
    	// AlpnOverrideMetadataKey is the key under which metadata is added
    	// to indicate whether Istio rewrite the ALPN headers
    	AlpnOverrideMetadataKey = "alpn_override"
    )
    
    // ALPNH2Only advertises that Proxy is going to use HTTP/2 when talking to the cluster.
    var ALPNH2Only = pm.ALPNH2Only
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. src/runtime/cgocall.go

    // pointer to memory allocated by the Go runtime. Programs that use
    // unsafe can evade this restriction easily, so we don't try to catch
    // them. The cgo program will rewrite all possibly bad pointer
    // arguments to call cgoCheckPointer, where we can catch cases of a Go
    // pointer pointing to an unpinned Go pointer.
    
    // Complicating matters, taking the address of a slice or array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy.go

    		w.Header().Add("Content-Type", "application/json")
    		b, err := protomarshal.MarshalIndent(response, "  ")
    		if err == nil {
    			_, err = w.Write(b)
    			if err != nil {
    				log.Infof("fail to write debug response: %v", err)
    			}
    			return
    		}
    
    		// Failed as protobuf.  Try as regular JSON
    		proxyLog.Warnf("could not marshal istiod response as pb: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/path/match/uri_template/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/path/rewrite/uri_template/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/connection_debug_visitor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/connection_id_generator/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_experimental.h

    TF_CAPI_EXPORT void TFE_ContextSetRunEagerOpAsFunction(TFE_Context* ctx,
                                                           unsigned char enable,
                                                           TF_Status* status);
    
    // Enables rewrite jit_compile functions.
    TF_CAPI_EXPORT void TFE_ContextSetJitCompileRewrite(TFE_Context* ctx,
                                                        unsigned char enable,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top