Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for unhappy (0.12 sec)

  1. pkg/registry/core/service/portallocator/storage/storage.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package storage
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 20 07:49:59 UTC 2020
    - 655 bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/storage/storage.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package storage
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 12 15:23:38 UTC 2017
    - 655 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/interface.go

    	// variable gets a value.
    	Get() interface{}
    
    	// Set normally writes a value into this variable, unblocks every
    	// goroutine waiting for this variable to have a value, and
    	// returns true.  In the unhappy case that this variable is
    	// already set, this method returns false without modifying the
    	// variable's value.
    	Set(interface{}) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/Dispatcher.kt

       * be received. The default implementation returns an empty response. Mischievous implementations
       * can return other values to test HTTP edge cases, such as unhappy socket policies or throttled
       * request bodies.
       */
      open fun peek(): MockResponse {
        return MockResponse(socketPolicy = KeepOpen)
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Callback.kt

       * body on another thread.
       *
       * Note that transport-layer success (receiving a HTTP response code, headers and body) does not
       * necessarily indicate application-layer success: `response` may still indicate an unhappy HTTP
       * response code like 404 or 500.
       */
      @Throws(IOException::class)
      fun onResponse(
        call: Call,
        response: Response,
      )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/web/url_windows.go

    		// A common "legacy" format omits the leading slash before a drive letter,
    		// encoding the drive letter as the host instead of part of the path.
    		// (See https://blogs.msdn.microsoft.com/freeassociations/2005/05/19/the-bizarre-and-unhappy-story-of-file-urls/.)
    		// We do not support that format, but we should at least emit a more
    		// helpful error message for it.
    		if filepath.VolumeName(host) != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Call.kt

       *
       * Note that transport-layer success (receiving a HTTP response code, headers and body) does not
       * necessarily indicate application-layer success: `response` may still indicate an unhappy HTTP
       * response code like 404 or 500.
       *
       * @throws IOException if the request could not be executed due to cancellation, a connectivity
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. pkg/controller/volume/ephemeral/controller_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			// There is no good way to shut down the informers. They spawn
    			// various goroutines and some of them (in particular shared informer)
    			// become very unhappy ("close on closed channel") when using a context
    			// that gets cancelled. Therefore we just keep everything running.
    			ctx := context.Background()
    
    			var objects []runtime.Object
    			for _, pod := range tc.pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                }
    
                configurations.conf.resolutionStrategy {
                    eachDependency {
                        it.useVersion '1.3' //happy
                    }
                    eachDependency {
                        throw new RuntimeException("Unhappy :(")
                    }
                }
    """
    
            when:
            def failure = runAndFail("resolveConf")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        all {
                            it.useTarget group: it.requested.group, name: it.requested.module, version: '1.3' //happy
                        }
                        all {
                            throw new RuntimeException("Unhappy :(")
                        }
                    }
                }
    """
    
            when:
            fails "checkDeps"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
Back to top