Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 114 for T_simple (0.2 sec)

  1. src/runtime/map.go

    // they are iterating through has been moved ("evacuated")
    // to the new table.
    
    // Picking loadFactor: too large and we have lots of overflow
    // buckets, too small and we waste a lot of space. I wrote
    // a simple program to check some stats for different loads:
    // (64-bit, 8 byte keys and elems)
    //  loadFactor    %overflow  bytes/entry     hitprobe    missprobe
    //        4.00         2.13        20.77         3.00         4.00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		cases := []struct {
    			name     string
    			p        *model.Proxy
    			cfg      []config.Config
    			services []*model.Service
    		}{
    			{
    				name:     "simple",
    				p:        p,
    				services: []*model.Service{svc},
    			},
    			{
    				name:     "sidecar with service",
    				p:        p,
    				services: []*model.Service{svc},
    				cfg:      []config.Config{sidecarConfig},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	AESENC	runtime·aeskeysched+16(SB), X0
    	AESENC	runtime·aeskeysched+32(SB), X0
    	MOVQ	X0, AX	// return X0
    	RET
    noaes:
    	JMP	runtime·memhash64Fallback<ABIInternal>(SB)
    
    // simple mask to get rid of data in the high part of the register.
    DATA masks<>+0x00(SB)/8, $0x0000000000000000
    DATA masks<>+0x08(SB)/8, $0x0000000000000000
    DATA masks<>+0x10(SB)/8, $0x00000000000000ff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		makeInstance(httpStatic, "4.4.4.4", 8080, httpStatic.Spec.(*networking.ServiceEntry).Ports[1], map[string]string{"foo": "bar"}, PlainText),
    	}
    
    	t.Run("simple entry", func(t *testing.T) {
    		// Create a SE, expect the base instances
    		createConfigs([]*config.Config{httpStatic}, store, t)
    		instances := baseInstances
    		expectServiceInstances(t, sd, httpStatic, 0, instances)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		}
    		allocationPatch = fmt.Sprintf(`"driverName": %q, "allocation": %s, `, state.informationsForClaim[index].allocationDriverName, string(buffer))
    
    		// The finalizer needs to be added in a normal update. Using a simple update is fine
    		// because we don't expect concurrent modifications while the claim is not allocated
    		// yet. If there are any, we want to fail.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      TF_DeleteGraph(g1);
      TF_DeleteGraph(g2);
      TF_DeleteStatus(s);
    }
    */
    
    TEST(CAPI, ImportGraphDef) {
      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Create a simple graph.
      Placeholder(graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      ASSERT_TRUE(TF_GraphOperationByName(graph, "feed") != nullptr);
      TF_Operation* oper = ScalarConst(3, graph, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    }
    
    func (p *parser) makeExpr(s ast.Stmt, want string) ast.Expr {
    	if s == nil {
    		return nil
    	}
    	if es, isExpr := s.(*ast.ExprStmt); isExpr {
    		return es.X
    	}
    	found := "simple statement"
    	if _, isAss := s.(*ast.AssignStmt); isAss {
    		found = "assignment"
    	}
    	p.error(s.Pos(), fmt.Sprintf("expected %s, found %s (missing parentheses around composite literal?)", want, found))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     Actual: false (5 is odd)
    //   Expected: true
    //
    // instead of a more opaque
    //
    //   Value of: IsEven(Fib(5))
    //     Actual: false
    //   Expected: true
    //
    // in case IsEven is a simple Boolean predicate.
    //
    // If you expect your predicate to be reused and want to support informative
    // messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     Actual: false (5 is odd)
    //   Expected: true
    //
    // instead of a more opaque
    //
    //   Value of: IsEven(Fib(5))
    //     Actual: false
    //   Expected: true
    //
    // in case IsEven is a simple Boolean predicate.
    //
    // If you expect your predicate to be reused and want to support informative
    // messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // TableRow is an individual row in a table.
    // +protobuf=false
    type TableRow struct {
    	// cells will be as wide as the column definitions array and may contain strings, numbers (float64 or
    	// int64), booleans, simple maps, lists, or null. See the type field of the column definition for a
    	// more detailed description.
    	// +listType=atomic
    	Cells []interface{} `json:"cells"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
Back to top