Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 133 for nonexistent1 (0.17 sec)

  1. src/testing/testing.go

    	// created by a test, each numbered sequentially.
    	c.tempDirMu.Lock()
    	var nonExistent bool
    	if c.tempDir == "" { // Usually the case with js/wasm
    		nonExistent = true
    	} else {
    		_, err := os.Stat(c.tempDir)
    		nonExistent = os.IsNotExist(err)
    		if err != nil && !nonExistent {
    			c.Fatalf("TempDir: %v", err)
    		}
    	}
    
    	if nonExistent {
    		c.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. tests/test_application.py

    
    @pytest.mark.parametrize(
        "path,expected_status,expected_response",
        [
            ("/api_route", 200, {"message": "Hello World"}),
            ("/non_decorated_route", 200, {"message": "Hello World"}),
            ("/nonexistent", 404, {"detail": "Not Found"}),
        ],
    )
    def test_get_path(path, expected_status, expected_response):
        response = client.get(path)
        assert response.status_code == expected_status
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

            model.testEnum == TestEnum.SECOND
        }
    
        def cantAdaptInvalidEnumLiteral() {
            setup:
            TestProtocolModel protocolModel = Mock()
            _ * protocolModel.getTestEnum() >> "NONEXISTENT"
    
            when:
            TestModel model = adapter.adapt(TestModel.class, protocolModel)
            model.getTestEnum()
    
            then:
            thrown(IllegalArgumentException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/Files.java

        }
      }
    
      /**
       * Creates any necessary but nonexistent parent directories of the specified file. Note that if
       * this operation fails it may have succeeded in creating some (but not all) of the necessary
       * parent directories.
       *
       * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent
       *     directories of the specified file could not be created.
       * @since 4.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    								Key:             "example.org/admin_1",
    								ValueExpression: `claims.?is_admin.orValue(false) == true ? "true":""`,
    							},
    							{
    								Key:             "example.org/non_existent",
    								ValueExpression: `claims.?non_existent.orValue("default") == "default" ? "true":""`,
    							},
    						},
    					},
    				},
    				now: func() time.Time { return now },
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Files.java

        }
      }
    
      /**
       * Creates any necessary but nonexistent parent directories of the specified file. Note that if
       * this operation fails it may have succeeded in creating some (but not all) of the necessary
       * parent directories.
       *
       * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent
       *     directories of the specified file could not be created.
       * @since 4.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	}
    
    	_, err = ctbManager.GetTrustAnchorsByName("not-found", true)
    	if err != nil {
    		t.Fatalf("Unexpected error while calling GetTrustAnchorsByName for nonexistent CTB with allowMissing: %v", err)
    	}
    }
    
    func TestGetTrustAnchorsByNameCaching(t *testing.T) {
    	ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging_test.go

    					},
    				},
    			},
    		},
    	}
    	disabled := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Disabled: &wrappers.BoolValue{Value: true},
    			},
    		},
    	}
    	nonExistant := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "custom-provider",
    					},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/net/rpc/server_test.go

    	if err != nil {
    		t.Errorf("Add: expected no error but got string %q", err.Error())
    	}
    	if reply.C != args.A+args.B {
    		t.Errorf("Add: expected %d got %d", reply.C, args.A+args.B)
    	}
    
    	// Nonexistent method
    	args = &Args{7, 0}
    	reply = new(Reply)
    	err = client.Call("Arith.BadOperation", args, reply)
    	// expect an error
    	if err == nil {
    		t.Error("BadOperation: expected error")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
  10. tests/test_path.py

    
    def test_text_get():
        response = client.get("/text")
        assert response.status_code == 200, response.text
        assert response.json() == "Hello World"
    
    
    def test_nonexistent():
        response = client.get("/nonexistent")
        assert response.status_code == 404, response.text
        assert response.json() == {"detail": "Not Found"}
    
    
    def test_path_foobar():
        response = client.get("/path/foobar")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top