Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for Imported (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ===== includeSystemOutLog & includeSystemErrLog
    
    The `includeSystemOutLog` option allows configuring whether or not test output written to standard out is exported to the XML report file.
    The `includeSystemErrLog` option allows configuring whether or not test error output written to standard error is exported to the XML report file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    						}
    					} else {
    						exported := ps.virtualServiceIndex.exportedToNamespaceByGateway
    						// add to local namespace only
    						for _, gw := range gwNames {
    							n := types.NamespacedName{Namespace: string(exportTo), Name: gw}
    							exported[n] = append(exported[n], virtualService)
    						}
    					}
    				}
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. src/testing/testing.go

    //	    got := Abs(-1)
    //	    if got != 1 {
    //	        t.Errorf("Abs(-1) = %d; want 1", got)
    //	    }
    //	}
    //
    // If the file is in a separate "_test" package, the package being tested
    // must be imported explicitly and only its exported identifiers may be used.
    // This is known as "black box" testing.
    //
    //	package abs_test
    //
    //	import (
    //		"testing"
    //
    //		"path_to_pkg/abs"
    //	)
    //
    //	func TestAbs(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    In this case, there's no need to import the `Test` task type as it is part of the Gradle API and is therefore <<kotlin_dsl#sec:implicit_imports,imported implicitly>>.
    
    [[sec:kotlin_dsl_about_conventions]]
    === About conventions
    
    Some of the Gradle core plugins expose configurability with the help of a so-called _convention_ object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/go/build/build.go

    // Import returns details about the Go package named by the import path,
    // interpreting local import paths relative to the srcDir directory.
    // If the path is a local import path naming a package that can be imported
    // using a standard import path, the returned package will set p.ImportPath
    // to that path.
    //
    // In the directory containing the package, .go, .c, .h, and .s files are
    // considered part of the package except for:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    	}
    	requirements = rs
    	if err := commitRequirements(ctx, WriteOpts{}); err != nil {
    		base.Fatal(err)
    	}
    
    	// Suggest running 'go mod tidy' unless the project is empty. Even if we
    	// imported all the correct requirements above, we're probably missing
    	// some sums, so the next build command in -mod=readonly will likely fail.
    	//
    	// We look for non-hidden .go files or subdirectories to determine whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `The `BroadcastingCollectionEventRegister.getAddAction()` method has been removed with no replacement.
     * The internal `org.gradle.util` package is no longer imported by default.
    +
    Ideally you shouldn't use classes from this package, but, as a quick fix, you can add explicit imports to your build scripts for those classes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    	t := ldr.SymAddr(rs) + r.Add()
    	if t < 0 || t >= 1<<31 {
    		ldr.Errorf(s, "relocation for %s is too big (>=2G): 0x%x", ldr.SymName(s), ldr.SymValue(rs))
    	}
    
    	// Note, relocations imported from external objects may not have cleared bits
    	// within a relocatable field. They need cleared before applying the relocation.
    	switch r.Type() {
    	case objabi.R_ADDRPOWER_PCREL34:
    		// S + A - P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    	"io"
    	"math/big"
    	"net"
    	"net/url"
    	"strconv"
    	"time"
    	"unicode"
    
    	// Explicitly import these for their crypto.RegisterHash init side-effects.
    	// Keep these as blank imports, even if they're imported above.
    	_ "crypto/sha1"
    	_ "crypto/sha256"
    	_ "crypto/sha512"
    
    	"golang.org/x/crypto/cryptobyte"
    	cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    		}
    		return ""
    	}
    	r, _ := l.toLocal(i)
    	return r.unit.Lib.Pkg
    }
    
    // SetSymPkg sets the package/library for a symbol. This is
    // needed mainly for external symbols, specifically those imported
    // from shared libraries.
    func (l *Loader) SetSymPkg(i Sym, pkg string) {
    	// reject bad symbols
    	if i >= Sym(len(l.objSyms)) || i == 0 {
    		panic("bad symbol index in SetSymPkg")
    	}
    	l.symPkg[i] = pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top