Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for sample2 (0.13 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // - The simpler definition
    //
    //    #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1]
    //
    //   does not work, as gcc supports variable-length arrays whose sizes
    //   are determined at run-time (this is gcc's extension and not part
    //   of the C++ standard).  As a result, gcc fails to reject the
    //   following code with the simple definition:
    //
    //     int foo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/testing/testing.go

    // its -bench flag is provided. Benchmarks are run sequentially.
    //
    // For a description of the testing flags, see
    // https://golang.org/cmd/go/#hdr-Testing_flags.
    //
    // A sample benchmark function looks like this:
    //
    //	func BenchmarkRandInt(b *testing.B) {
    //	    for range b.N {
    //	        rand.Int()
    //	    }
    //	}
    //
    // The benchmark function must run the target code b.N times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      if ((Get-WindowsFeature -Name 'Windows-Defender').Installed) {
        Log-Output "Configuring Windows Defender preferences"
        Set-MpPreference -SubmitSamplesConsent NeverSend
        Log-Output "Disabling Windows Defender sample submission"
        Set-MpPreference -MAPSReporting Disabled
        Log-Output "Disabling Windows Defender Microsoft Active Protection Service Reporting"
    
        Log-Output "Defender Preferences"
        Get-MpPreference
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    							},
    						},
    					},
    				},
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "example2.default.svc.cluster.local",
    							Port: &networking.PortSelector{
    								Number: 8484,
    							},
    						},
    					},
    				},
    			},
    			{
    				Name: "route 3",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    	extSvc := buildServiceWithPort("example1.com", 9999, protocol.TCP, tnow)
    	extSvc.Resolution = model.Passthrough
    	extSvc.Attributes.ServiceRegistry = provider.External
    
    	extSvcSelector := buildServiceWithPort("example2.com", 9999, protocol.TCP, tnow)
    	extSvcSelector.Resolution = model.Passthrough
    	extSvcSelector.Attributes.ServiceRegistry = provider.External
    	extSvcSelector.Attributes.LabelSelectors = map[string]string{"foo": "bar"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top