Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for simulation (0.34 sec)

  1. pilot/pkg/networking/core/serviceentry_simulation_test.go

    			kubeConfig: "",
    			calls: []simulation.Expect{{
    				// Expect listener, but no routing
    				Name: "defined port",
    				Call: simulation.Call{
    					Port:       9999,
    					HostHeader: "blah.somedomain",
    					Address:    "1234:1f1:1:1:1:1:1:1",
    					Protocol:   simulation.HTTP,
    				},
    				Result: simulation.Result{
    					ListenerMatched: "0.0.0.0_9999",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/image/jpeg/idct.go

    //
    // which carries the following notice:
    
    /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
    
    /*
     * Disclaimer of Warranty
     *
     * These software programs are available to the user without any license fee or
     * royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
     * any and all warranties, whether express, implied, or statuary, including any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/ir/Passes.h

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace func {
    class FuncOp;
    }  // namespace func
    
    namespace quantfork {
    
    /// Creates a pass that converts quantization simulation operations (i.e.
    /// FakeQuant and those like it) to casts into/out of supported QuantizedTypes.
    std::unique_ptr<OperationPass<func::FuncOp>> createConvertSimulatedQuantPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access_test.go

    			}
    			for _, q := range quotas {
    				if q.Namespace != testNamespace1 {
    					t.Errorf("Expected %s namespace, got %s", testNamespace1, q.Namespace)
    				}
    			}
    		}()
    
    		// simulation of different namespaces is a call for a different group key, but not shared with the first namespace
    		go func() {
    			defer wg.Done()
    			quotas, err := accessor.GetQuotas(testNamespace2)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/zsys_freebsd_386.go

    	sizeofIfDataFreeBSD7  = 0x50
    	sizeofIfDataFreeBSD8  = 0x50
    	sizeofIfDataFreeBSD9  = 0x50
    	sizeofIfDataFreeBSD10 = 0x54
    	sizeofIfDataFreeBSD11 = 0x98
    
    	// MODIFIED BY HAND FOR 386 EMULATION ON AMD64
    	// 386 EMULATION USES THE UNDERLYING RAW DATA LAYOUT
    
    	sizeofIfMsghdrlFreeBSD10Emu        = 0xb0
    	sizeofIfaMsghdrFreeBSD10Emu        = 0x14
    	sizeofIfaMsghdrlFreeBSD10Emu       = 0xb0
    	sizeofIfmaMsghdrFreeBSD10Emu       = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedIdeaModuleInternalBuilder.java

            // Simulating IdeaPlugin to only expose these values when 'java' plugin is applied
            if (project.getPlugins().hasPlugin(JavaPlugin.class)) {
                model.setExplicitSourceLanguageLevel(ideaModuleExt.getRawLanguageLevel());
                model.setExplicitTargetBytecodeVersion(ideaModuleExt.getRawTargetBytecodeVersion());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:13:36 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // GoStatus event.
    //
    // The situation is one in which it just so happens that
    // an event on the frontier for a following generation
    // has a sequence number exactly one higher than the last
    // sequence number for e.g. a goroutine in the previous
    // generation. The parser should wait to find a GoStatus
    // event before advancing into the next generation at all.
    // It turns out this situation is pretty rare; the GoStatus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/runtime/testdata/testwinlib/main.go

    // CallMeBack call backs C code.
    //
    //export CallMeBack
    func CallMeBack(callback C.callmeBackFunc) {
    	C.bridgeCallback(callback)
    }
    
    // Dummy is called by the C code before registering the exception/continue handlers simulating a debugger.
    // This makes sure that the Go runtime's lastcontinuehandler is reached before the C continue handler and thus,
    // validate that it does not crash the program before another handler could take an action.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 925 bytes
    - Viewed (0)
  9. misc/ios/clangwrap.sh

    # to see the available SDKs and replace iphoneos with one of them.
    if [ "$GOARCH" == "arm64" ]; then
    	SDK=iphoneos
    	PLATFORM=ios
    	CLANGARCH="arm64"
    else
    	SDK=iphonesimulator
    	PLATFORM=ios-simulator
    	CLANGARCH="x86_64"
    fi
    
    SDK_PATH=`xcrun --sdk $SDK --show-sdk-path`
    export IPHONEOS_DEPLOYMENT_TARGET=5.1
    # cmd/cgo doesn't support llvm-gcc-4.2, so we have to use clang.
    CLANG=`xcrun --sdk $SDK --find clang`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 16:48:07 UTC 2021
    - 626 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_temp.txt

    # Regression test for https://go.dev/issue/51992
    
    # 'go mod tidy' should error instead of throwing panic in the situation below.
    # 1. /tmp/go.mod exists
    # 2. run 'go mod tidy' in /tmp or in the child directory not having go.mod.
    
    [GOOS:plan9] stop  # Plan 9 has no $TMPDIR variable to set.
    
    env GOROOT=$TESTGO_GOROOT
    env TMP=$WORK
    env TMPDIR=$WORK
    mkdir $WORK/child
    
    ! go mod tidy
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 640 bytes
    - Viewed (0)
Back to top