Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,827 for augment (0.19 sec)

  1. src/cmd/compile/internal/types2/errors.go

    		// constant initialization expression, pos is the position of
    		// the original expression, and not of the currently declared
    		// constant identifier. Use the provided errpos instead.
    		// TODO(gri) We may also want to augment the error message and
    		// refer to the position (pos) in the original expression.
    		if check.errpos.Pos().IsKnown() {
    			assert(check.iota != nil)
    			pos = check.errpos
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. cmd/veeam-sos-api.go

    // multiple buckets can be used together. The placement logic for additional backup files is based on available space. Other values
    // will augment the Veeam user interface and statistics, including free space warnings.
    type capacityInfo struct {
    	XMLName   xml.Name `xml:"CapacityInfo" json:"-"`
    	Capacity  int64    `xml:"Capacity"`
    	Available int64    `xml:"Available"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    				makeInstance(selector, "1.1.1.1", 8080, selector.Spec.(*networking.ServiceEntry).Ports[1], labels, PlainText),
    			},
    		},
    		{
    			name: "augment label",
    			wle: &networking.WorkloadEntry{
    				Address:        "1.1.1.1",
    				Labels:         labels,
    				Locality:       "region1/zone1/sunzone1",
    				Network:        "network1",
    				ServiceAccount: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. docs/en/docs/features.md

    * Even dependencies can have dependencies, creating a hierarchy or **"graph" of dependencies**.
    * All **automatically handled** by the framework.
    * All the dependencies can require data from requests and **augment the path operation** constraints and automatic documentation.
    * **Automatic validation** even for *path operation* parameters defined in dependencies.
    * Support for complex user authentication systems, **database connections**, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                                /*
                                 * Before we return, in anticipation of this address being cached we must
                                 * augment the addresses name's hashCode to distinguish those resolved by
                                 * Lmhosts, WINS, or BCAST. Otherwise a failed query from say WINS would
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  6. src/cmd/trace/gstate.go

    	return &gState[R]{
    		baseName:     fmt.Sprintf("G%d", goID),
    		executing:    R(noResource),
    		activeRanges: make(map[string]activeRange),
    	}
    }
    
    // augmentName attempts to use stk to augment the name of the goroutine
    // with stack information. This stack must be related to the goroutine
    // in some way, but it doesn't really matter which stack.
    func (gs *gState[R]) augmentName(stk trace.Stack) {
    	if gs.named {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/log/slog/handler.go

    	// If called from a Logger method, the first argument is the context
    	// passed to that method, or context.Background() if nil was passed
    	// or the method does not take a context.
    	// The context is passed so Enabled can use its values
    	// to make a decision.
    	Enabled(context.Context, Level) bool
    
    	// Handle handles the Record.
    	// It will only be called when Enabled returns true.
    	// The Context argument is as for Enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. pkg/kube/krt/collection.go

    		h.log.Errorf("Output %v -> %v", os, o)
    	}
    	h.log.Errorf("<<< END DUMP")
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (h *manyCollection[I, O]) augment(a any) any {
    	if h.augmentation != nil {
    		return h.augmentation(a)
    	}
    	return a
    }
    
    // onPrimaryInputEvent takes a list of I's that changed and reruns the handler over them.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                builder.jvmArgs(invocation.launcherJvmArgs);
                // Apply the agent to the newly created daemon. The feature flag decides if it is going to be used.
                for (File agent : cleanup(GLOBAL_SERVICES.get(ModuleRegistry.class).getModule(AgentUtils.AGENT_MODULE_NAME).getClasspath().getAsFiles())) {
                    builder.jvmArgs("-javaagent:" + agent.getAbsolutePath());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

         */
        private fun KtElement.getExpressionForOperationReferenceExpression(): KtElement? {
            if (this !is KtOperationReferenceExpression) return null
            return when (val parent = parent) {
                // Augment assignment resolves into KtCompoundVariableAccessCall, but we should resolve into a specific function
                is KtBinaryExpression -> parent.takeUnless { operationSignTokenType in KtTokens.AUGMENTED_ASSIGNMENTS }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top