Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for augmented (0.27 sec)

  1. test/peano.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that heavy recursion works. Simple torture test for
    // segmented stacks: do math in unary by recursion.
    
    package main
    
    import "runtime"
    
    type Number *Number
    
    // -------------------------------------
    // Peano primitives
    
    func zero() *Number {
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 30 19:39:18 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/go/types/errors.go

    		go116start: span.start,
    		go116end:   span.end,
    	}
    
    	if check.errpos != nil {
    		// If we have an internal error and the errpos override is set, use it to
    		// augment our error positioning.
    		// TODO(rFindley) we may also want to augment the error message and refer
    		// to the position (pos) in the original expression.
    		span := spanOf(check.errpos)
    		e.Pos = span.pos
    		e.go116start = span.start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

    import org.gradle.internal.service.scopes.EventScope
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.util.internal.GUtil
    import java.io.File
    
    
    /**
     * Augments the [DefaultEnvironment] to track access to properties files, environment variables and system properties.
     **/
    class ConfigurationCacheEnvironment(
        private val listenerManager: ListenerManager
    ) : DefaultEnvironment() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

            /** Reassigned variable symbol. */
            public val variable: KaVariableLikeSymbol,
    
            /** `true` if the variable is both read and set (as in `x += y` or `x++`). */
            public val isAugmented: Boolean
        )
    }
    
    @KaAnalysisNonPublicApi
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pkg/kube/krt/core.go

    	// Note this may not be universally unique
    	name() string
    	// Uid is an internal unique ID for this collection. MUST be globally unique
    	uid() collectionUID
    
    	dump()
    
    	// Augment mutates an object for use in various function calls. See WithObjectAugmentation
    	augment(any) any
    }
    
    // Singleton is a special Collection that only ever has a single object. They can be converted to the Collection where convenient,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. pkg/kube/krt/fetch.go

    		list = d.filter.listFromIndex().([]T)
    	} else {
    		// Otherwise get everything
    		list = c.List()
    	}
    	list = slices.FilterInPlace(list, func(i T) bool {
    		o := c.augment(i)
    		return d.filter.Matches(o, true)
    	})
    	if log.DebugEnabled() {
    		log.WithLabels(
    			"parent", h.name(),
    			"fetch", c.name(),
    			"filter", d.filter,
    			"size", len(list),
    		).Debugf("Fetch")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/kube/krt/join.go

    	for _, c := range j.collections {
    		sync.syncers = append(sync.syncers, c.RegisterBatch(f, runExistingState))
    	}
    	return sync
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (j *join[T]) augment(a any) any {
    	// not supported in this collection type
    	return a
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (j *join[T]) name() string { return j.collectionName }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/syntax.go

    }
    
    var _ error = Error{} // verify that Error implements error
    
    // An ErrorHandler is called for each error encountered reading a .go file.
    type ErrorHandler func(err error)
    
    // A Pragma value augments a package, import, const, func, type, or var declaration.
    // Its meaning is entirely up to the PragmaHandler,
    // except that nil is used to mean “no pragma seen.”
    type Pragma interface{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/sym.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/internal/obj"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Sym represents an object name in a segmented (pkg, name) namespace.
    // Most commonly, this is a Go identifier naming an object declared within a package,
    // but Syms are also used to name internal synthesized objects.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/lex/lex_test.go

    	{
    		"macro with parens but no arguments",
    		"#define A (x) \n" + "A\n",
    		"(.x.).\n",
    	},
    	{
    		"macro with arguments",
    		"#define A(x, y, z) x+z+y\n" + "A(1, 2, 3)\n",
    		"1.+.3.+.2.\n",
    	},
    	{
    		"argumented macro invoked without arguments",
    		lines(
    			"#define X() foo ",
    			"X()",
    			"X",
    		),
    		"foo.\n.X.\n",
    	},
    	{
    		"multiline macro without arguments",
    		lines(
    			"#define A 1\\",
    			"\t2\\",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top