Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for mainIvy (0.22 sec)

  1. pilot/pkg/xds/lds_test.go

    				// It is mostly intended as a reference for what is generated - we need to add explicit checks
    				// for things we need, like the number of expected listeners.
    				// This is mainly using for debugging what changed from the snapshot in the golden files.
    				if os.Getenv("CONFIG_DIFF") == "1" {
    					t.Logf("error in golden file %s %v", s, err)
    				}
    			}
    		}
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableList.java

        return CollectCollectors.toImmutableList();
      }
    
      /**
       * Returns the empty immutable list. This list behaves and performs comparably to {@link
       * Collections#emptyList}, and is preferable mainly for consistency and maintainability of your
       * code.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      // Casting to any type is safe because the list will never hold any elements.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. internal/jwt/parser.go

    type StandardClaims struct {
    	AccessKey string `json:"accessKey,omitempty"`
    	jwtgo.StandardClaims
    }
    
    // UnmarshalJSON provides custom JSON unmarshal.
    // This is mainly implemented for speed.
    func (c *StandardClaims) UnmarshalJSON(b []byte) (err error) {
    	return jsonparser.ObjectEach(b, func(key []byte, value []byte, dataType jsonparser.ValueType, _ int) error {
    		if len(key) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. src/syscall/tables_js.go

    	sys_get_random_bytes     = 150
    )
    
    // TODO: Auto-generate some day. (Hard-coded in binaries so not likely to change.)
    const (
    	// native_client/src/trusted/service_runtime/include/sys/errno.h
    	// The errors are mainly copied from Linux.
    	EPERM           Errno = 1       /* Operation not permitted */
    	ENOENT          Errno = 2       /* No such file or directory */
    	ESRCH           Errno = 3       /* No such process */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  5. cmd/admin-handlers-config-kv.go

    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	writeSuccessResponseHeadersOnly(w)
    }
    
    // GetConfigHandler - GET /minio/admin/v3/config
    //
    // This endpoint is mainly for exporting and backing up the configuration.
    // Secrets are not redacted.
    func (a adminAPIHandlers) GetConfigHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/https.md

    ## HTTPS for Developers
    
    Here's an example of how an HTTPS API could look like, step by step, paying attention mainly to the ideas important for developers.
    
    ### Domain Name
    
    It would probably all start by you **acquiring** some **domain name**. Then, you would configure it in a DNS server (possibly your same cloud provider).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/internal/profile/profile.go

    					l.Line[i].Line = 0
    				}
    			}
    			if !address {
    				l.Address = 0
    			}
    		}
    	}
    
    	return p.CheckValid()
    }
    
    // Print dumps a text representation of a profile. Intended mainly
    // for debugging purposes.
    func (p *Profile) String() string {
    
    	ss := make([]string, 0, len(p.Sample)+len(p.Mapping)+len(p.Location))
    	if pt := p.PeriodType; pt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. tensorflow/c/eager/gradients.cc

      return absl::OkStatus();
    }
    
    // Helper functions which delegate to `AbstractOperation`, update
    // the state of the ForwardOperation and call the tape as appropriate.
    // These APIs are mainly to facilitate testing and are subject to change.
    namespace internal {
    Status Reset(AbstractOperation* op_, const char* op,
                 const char* raw_device_name, ForwardOperation* forward_op_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/common/deployment/echos.go

    	// will be generated unless NoExternalNamespace is specified.
    	ExternalNamespace namespace.Getter
    
    	// IncludeExtAuthz if enabled, an additional ext-authz container will be included in the deployment.
    	// This is mainly used to test the CUSTOM authorization policy when the ext-authz server is deployed
    	// locally with the application container in the same pod.
    	IncludeExtAuthz bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/abi.go

    		typecheck.NewFuncParams(ft.Results())))
    	fn.ABI = wrapperABI
    	typecheck.DeclFunc(fn)
    
    	fn.SetABIWrapper(true)
    	fn.SetDupok(true)
    
    	// ABI0-to-ABIInternal wrappers will be mainly loading params from
    	// stack into registers (and/or storing stack locations back to
    	// registers after the wrapped call); in most cases they won't
    	// need to allocate stack space, so it should be OK to mark them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top