Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for dontWant (0.12 sec)

  1. src/runtime/float_test.go

    		1<<56 + 1<<32 + 1,
    	} {
    		got := float32(i)
    		dontwant := float32(float64(i))
    		if got == dontwant {
    			// The test cases above should be uint64s such that
    			// this equality doesn't hold. These examples trigger
    			// the case where using an intermediate float64 doesn't work.
    			t.Errorf("direct float32 conversion doesn't work: arg=%x got=%x dontwant=%x", i, got, dontwant)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:34:24 UTC 2021
    - 699 bytes
    - Viewed (0)
  2. cluster/gce/gci/apiserver_etcd_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestStorageOptions(t *testing.T) {
    	testCases := []struct {
    		desc     string
    		env      kubeAPIServeETCDEnv
    		want     []string
    		dontWant []string
    	}{
    		{
    			desc: "storage options are supplied",
    			env: kubeAPIServeETCDEnv{
    				StorageBackend:     "StorageBackend",
    				StorageMediaType:   "StorageMediaType",
    				CompactionInterval: "1s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/vet/vet_test.go

    			want := fmt.Sprintf("file%d.go", wantFile)
    			dontwant := fmt.Sprintf("file%d.go", 3-wantFile)
    
    			// file1 has testtag and file2 has !testtag.
    			if !bytes.Contains(output, []byte(filepath.Join("tagtest", want))) {
    				t.Errorf("%s: %s was excluded, should be included", tag, want)
    			}
    			if bytes.Contains(output, []byte(filepath.Join("tagtest", dontwant))) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/doc/doc_test.go

    	// Expect an error.
    	if err == nil {
    		t.Error("expect an error for template.zzz")
    	}
    	// And the output should not contain any package clauses.
    	const dontWant = `package template // import `
    	output := b.String()
    	if strings.Contains(output, dontWant) {
    		t.Fatalf("improper package clause printed:\n%s", output)
    	}
    }
    
    type trimTest struct {
    	path   string
    	prefix string
    	result string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	}
    	// Validate that non-accounted URLs still work.  use a path regex match
    	if err := expectHTTPGet(server.URL+"/api/v1/watch/namespaces/default/dontwait", http.StatusOK); err != nil {
    		t.Error(err)
    	}
    
    	// We should allow a single mutating request.
    	if err := expectHTTPPost(server.URL+"/dontwait", http.StatusOK); err != nil {
    		t.Error(err)
    	}
    
    	// Let all hanging requests finish
    	block.Done()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/query-params.md

    * `limit=10` : car `limit` n'a pas été déclaré dans l'URL, et que la valeur par défaut était `10`.
    
    ## Paramètres optionnels
    
    De la même façon, vous pouvez définir des paramètres de requête comme optionnels, en leur donnant comme valeur par défaut `None` :
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params/tutorial002.py!}
    ```
    
    Ici, le paramètre `q` sera optionnel, et aura `None` comme valeur par défaut.
    
    !!! check "Remarque"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. docs/fr/docs/async.md

    Ensuite, quand c'est votre tour, vous faites des actions "productives" 🤓, vous étudiez le menu, décidez ce que vous voulez, demandez à votre crush 😍 son choix, payez 💸, vérifiez que vous utilisez la bonne carte de crédit, vérifiez que le montant débité sur la carte est correct, vérifiez que la commande contient les bons produits, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	// 240.240.0.0
    	// 240.240.0.255
    	// 240.240.1.0
    	// 240.240.1.255
    	// 240.240.2.0
    	// 240.240.2.255
    	// 240.240.3.0
    	// 240.240.3.255
    	// The last IP should be 240.240.202.167
    	doNotWant := map[string]bool{
    		"240.240.0.0":   true,
    		"240.240.0.255": true,
    		"240.240.1.0":   true,
    		"240.240.1.255": true,
    		"240.240.2.0":   true,
    		"240.240.2.255": true,
    		"240.240.3.0":   true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top