Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for describeTo (0.23 sec)

  1. docs/bucket/notifications/README.md

    The AMQP configuration is located under the sub-system `notify_amqp` top-level key. Create a configuration key-value pair here for your AMQP instance. The key is a name for your AMQP endpoint, and the value is a collection of key-value parameters described in the table below.
    
    ```
    KEY:
    notify_amqp[:name]  publish bucket notifications to AMQP endpoints
    
    ARGS:
    url*           (url)       AMQP server endpoint e.g. `amqp://myuser:mypassword@localhost:5672`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    WARNING: Using the `Project.copy` method at execution time, as described here, is not compatible with the <<configuration_cache.adoc#config_cache:requirements:use_project_during_execution,configuration cache>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    // top of this file.
    type typePointers struct {
    	// elem is the address of the current array element of type typ being iterated over.
    	// Objects that are not arrays are treated as single-element arrays, in which case
    	// this value does not change.
    	elem uintptr
    
    	// addr is the address the iterator is currently working from and describes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    		check.convertUntyped(x, y.typ)
    		if x.mode == invalid {
    			return
    		}
    		check.convertUntyped(y, x.typ)
    		if y.mode == invalid {
    			x.mode = invalid
    			return
    		}
    	}
    }
    
    // exprKind describes the kind of an expression; the kind
    // determines if an expression is valid in 'statement context'.
    type exprKind int
    
    const (
    	conversion exprKind = iota
    	expression
    	statement
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if !c.ready.check() {
    			// If Cache is not initialized, delegate Get requests to storage
    			// as described in https://kep.k8s.io/4568
    			return c.storage.Get(ctx, key, opts, objPtr)
    		}
    	}
    
    	// If resourceVersion is specified, serve it from cache.
    	// It's guaranteed that the returned value is at least that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <li>A property of the project whose value is a closure. The closure is treated as a method and called with the provided parameters.
     * The property is located as described above.</li>
     *
     * </ul>
     */
    @HasInternalProtocol
    public interface Project extends Comparable<Project>, ExtensionAware, PluginAware {
        /**
         * The default project build file name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    		check.convertUntyped(x, y.typ)
    		if x.mode == invalid {
    			return
    		}
    		check.convertUntyped(y, x.typ)
    		if y.mode == invalid {
    			x.mode = invalid
    			return
    		}
    	}
    }
    
    // exprKind describes the kind of an expression; the kind
    // determines if an expression is valid in 'statement context'.
    type exprKind int
    
    const (
    	conversion exprKind = iota
    	expression
    	statement
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    import (
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // An Error describes a failure to parse a regular expression
    // and gives the offending expression.
    type Error struct {
    	Code ErrorCode
    	Expr string
    }
    
    func (e *Error) Error() string {
    	return "error parsing regexp: " + e.Code.String() + ": `" + e.Expr + "`"
    }
    
    // An ErrorCode describes a failure to parse a regular expression.
    type ErrorCode string
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private TaskFinishEvent taskFinishedEvent(InternalOperationFinishedProgressEvent event) {
            // do not remove task descriptors because they might be needed to describe subsequent tasks' dependencies
            TaskOperationDescriptor descriptor = assertDescriptorType(TaskOperationDescriptor.class, getParentDescriptor(event.getDescriptor().getId()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	}
    	var p *abi.Imethod
    	for i := range t.Methods {
    		p = &t.Methods[i]
    		if t.nameOff(p.Name).Name() == name {
    			return t.Method(i), true
    		}
    	}
    	return
    }
    
    // A StructField describes a single field in a struct.
    type StructField struct {
    	// Name is the field name.
    	Name string
    
    	// PkgPath is the package path that qualifies a lower case (unexported)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top