Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 118 for necessarily (0.2 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string operation = 2;
    
      // APIVersion defines the version of this resource that this field set
      // applies to. The format is "group/version" just like the top-level
      // APIVersion field. It is necessary to track the version of a field
      // set because it cannot be automatically converted.
      optional string apiVersion = 3;
    
      // Time is the timestamp of when the ManagedFields entry was added. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string operation = 2;
    
      // APIVersion defines the version of this resource that this field set
      // applies to. The format is "group/version" just like the top-level
      // APIVersion field. It is necessary to track the version of a field
      // set because it cannot be automatically converted.
      optional string apiVersion = 3;
    
      // Time is the timestamp of when the ManagedFields entry was added. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      }
    
     private:
      mutex mu_;
      absl::flat_hash_map<uint64, int64> sequence_numbers_;
    };
    
    // Get a monotonic sequence numbers for a graph identified by its `fingerprint`.
    // The sequence number is necessary to disambiguate clusters extracted from the
    // same graph and when duplicate graphs exist within the same process.
    int64_t GetNextClusterSequenceNumber(uint64 fingerprint) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    		if frame.fn.deferreturn != 0 {
    			frame.continpc = frame.fn.entry() + uintptr(frame.fn.deferreturn) + 1
    			// Note: this may perhaps keep return variables alive longer than
    			// strictly necessary, as we are using "function has a defer statement"
    			// as a proxy for "function actually deferred something". It seems
    			// to be a minor drawback. (We used to actually look through the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    	hostname := "*"
    	if l.Hostname != nil {
    		hostname = string(*l.Hostname)
    	}
    
    	resp := []string{}
    	for _, ns := range namespacesFromSelector(localNamespace, r, l.AllowedRoutes) {
    		// This check is necessary to prevent adding a hostname with an invalid empty namespace
    		if len(ns) > 0 {
    			resp = append(resp, fmt.Sprintf("%s/%s", ns, hostname))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // Example usage:
    //
    //	buf := make([]byte, 2, 514)
    //	b := NewBuilder(buf, Header{...})
    //	b.EnableCompression()
    //	// Optionally start a section and add things to that section.
    //	// Repeat adding sections as necessary.
    //	buf, err := b.Finish()
    //	// If err is nil, buf[2:] will contain the built bytes.
    type Builder struct {
    	// msg is the storage for the message being built.
    	msg []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    		}
    	}
    
    	// TODO(golang.org/issue/33284): attribute changes to command line arguments.
    	// For modules matched by command line arguments, this probably isn't
    	// necessary, but it would be useful for unmatched direct dependencies of
    	// the main module.
    }
    
    // resolve records that module m must be at its indicated version (which may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		}
    		n += copy(out, buf[addr%SizeofPtr:])
    		out = out[n:]
    	}
    
    	// Remainder.
    	for len(out) > 0 {
    		// We use an internal buffer to guarantee alignment.
    		// It's not documented if this is necessary, but we're paranoid.
    		err = ptracePtr(req, pid, addr+uintptr(n), unsafe.Pointer(&buf[0]))
    		if err != nil {
    			return n, err
    		}
    		copied := copy(out, buf[0:])
    		n += copied
    		out = out[copied:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    		// a field declaration cannot start with a '(' but we accept
    		// it here for more robust parsing and better error messages
    		// (parseFieldDecl will check and complain if necessary)
    		list = append(list, p.parseFieldDecl())
    	}
    	rbrace := p.expect(token.RBRACE)
    
    	return &ast.StructType{
    		Struct: pos,
    		Fields: &ast.FieldList{
    			Opening: lbrace,
    			List:    list,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    This allows us to model the JaCoCo Java agent, thus declaring the necessary JVM arguments and providing the inputs and outputs to Gradle:
    
    ====
    [source,java]
    .JacocoAgent.java
    ----
    class JacocoAgent implements CommandLineArgumentProvider {
        private final JacocoTaskExtension jacoco;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top