Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for werde (0.12 sec)

  1. src/cmd/go/internal/load/pkg.go

    	Gccgoflags []string // -gccgoflags for this package
    }
    
    // A NoGoError indicates that no Go files for the package were applicable to the
    // build for that package.
    //
    // That may be because there were no files whatsoever, or because all files were
    // excluded, or because all non-excluded files were test sources.
    type NoGoError struct {
    	Package *Package
    }
    
    func (e *NoGoError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. fastapi/routing.py

                bool,
                Doc(
                    """
                    Configuration passed to Pydantic to define if the response data
                    should have all the fields, including the ones that were not set and
                    have their default values. This is different from
                    `response_model_exclude_defaults` in that if the fields are set,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. fastapi/applications.py

                bool,
                Doc(
                    """
                    Configuration passed to Pydantic to define if the response data
                    should have all the fields, including the ones that were not set and
                    have their default values. This is different from
                    `response_model_exclude_defaults` in that if the fields are set,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    	// Report node status if it has exceeded the duration of nodeStatusReportFrequency.
    	clock.Step(time.Minute)
    	assert.NoError(t, kubelet.updateNodeStatus(ctx))
    
    	// 2 more action (There were 2 actions before).
    	actions = kubeClient.Actions()
    	assert.Len(t, actions, 4)
    	assert.IsType(t, core.GetActionImpl{}, actions[2])
    	assert.IsType(t, core.PatchActionImpl{}, actions[3])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
            """
    
            when:
            run "dependencyInsight", "--dependency", "unknown"
    
            then:
            outputContains """
    No dependencies matching given input were found in configuration ':compileClasspath'
    """
        }
    
        def "indicates that requested dependency cannot be found for custom configuration"() {
            given:
            mavenRepo.module("org", "leaf1").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. src/net/http/server.go

    }
    
    // exactMatch reports whether the node's pattern exactly matches the path.
    // As a special case, if the node is nil, exactMatch return false.
    //
    // Before wildcards were introduced, it was clear that an exact match meant
    // that the pattern and path were the same string. The only other possibility
    // was that a trailing-slash pattern, like "/", matched a path longer than
    // it, like "/a".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		}
    		if i, o := string(inBytes), string(outBytes); i != o {
    			t.Fatalf("output != input:\n  want: %s\n   got: %s", i, o)
    		}
    	}
    }
    
    func TestStoreCreateHooks(t *testing.T) {
    	// To track which hooks were called in what order.  Not all hooks can
    	// mutate the object.
    	var milestones []string
    
    	setAnn := func(obj runtime.Object, key string) {
    		pod := obj.(*example.Pod)
    		if pod.Annotations == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    func getS3RequestsCanceledMD() MetricDescription {
    	return MetricDescription{
    		Namespace: s3MetricNamespace,
    		Subsystem: requestsSubsystem,
    		Name:      canceledTotal,
    		Help:      "Total number of S3 requests that were canceled by the client",
    		Type:      counterMetric,
    	}
    }
    
    func getS3RejectedAuthRequestsTotalMD() MetricDescription {
    	return MetricDescription{
    		Namespace: s3MetricNamespace,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    				// that pod to the pod worker so that it restarts.
    				metrics.RestartedPodTotal.FQName(): `# HELP kubelet_restarted_pods_total [ALPHA] Number of pods that have been restarted because they were deleted and recreated with the same UID while the kubelet was watching them (common for static pods, extremely uncommon for API pods)
    				# TYPE kubelet_restarted_pods_total counter
    				kubelet_restarted_pods_total{static=""} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

        }.also { expected ->
          assertThat(expected.message).isEqualTo("Too many follow-up requests: 21")
        }
      }
    
      /**
       * We had a bug where we were passing a null route to the authenticator.
       * https://github.com/square/okhttp/issues/3809
       */
      @Test
      fun authenticateWithNoConnection() {
        server.enqueue(
          MockResponse(
            code = 401,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top