Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 103 for descriptor (0.27 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		}
    	}
    }
    
    func TestScopesInfo(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	var tests = []struct {
    		src    string
    		scopes []string // list of scope descriptors of the form kind:varlist
    	}{
    		{`package p0`, []string{
    			"file:",
    		}},
    		{`package p1; import ( "fmt"; m "math"; _ "os" ); var ( _ = fmt.Println; _ = m.Pi )`, []string{
    			"file:fmt m",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			Schemas: staticOpenAPISpec,
    		},
    	}
    
    	specs := []*spec3.OpenAPI{staticSpecV3}
    	for _, v := range crd.Spec.Versions {
    		// Defaults are not pruned here, but before being served.
    		// See flag description in builder.go for flag usage
    		s, err := builder.BuildOpenAPIV3(crd, v.Name, builder.Options{})
    		if err != nil {
    			return nil, err
    		}
    		specs = append(specs, s)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		}
    	}
    }
    
    func TestScopesInfo(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	var tests = []struct {
    		src    string
    		scopes []string // list of scope descriptors of the form kind:varlist
    	}{
    		{`package p0`, []string{
    			"file:",
    		}},
    		{`package p1; import ( "fmt"; m "math"; _ "os" ); var ( _ = fmt.Println; _ = m.Pi )`, []string{
    			"file:fmt m",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	return true
    }
    
    // computeReplicasForMetrics computes the desired number of replicas for the metric specifications listed in the HPA,
    // returning the maximum of the computed replica counts, a description of the associated metric, and the statuses of
    // all metrics computed.
    // It may return both valid metricDesiredReplicas and an error,
    // when some metrics still work and HPA should perform scaling based on them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // The message must not contain line breaks.
      // If unset, the message is "failed Expression: {Expression}".
      // +optional
      optional string message = 2;
    
      // Reason represents a machine-readable description of why this validation failed.
      // If this is the first validation in the list to fail, this reason, as well as the
      // corresponding HTTP response code, are used in the
      // HTTP response to the client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/types.go

    	// The message must not contain line breaks.
    	// If unset, the message is "failed Expression: {Expression}".
    	// +optional
    	Message string
    	// Reason represents a machine-readable description of why this validation failed.
    	// If this is the first validation in the list to fail, this reason, as well as the
    	// corresponding HTTP response code, are used in the
    	// HTTP response to the client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

      //
      // A consequence of these requirements is that the delegate futures cannot be stored in
      // final fields.
      //
      // For simplicity the rest of this description will discuss Futures.catching since it is the
      // simplest instance, though very similar descriptions apply to many other classes in this file.
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    			// If everything is up-to-date, this is a no-op.
    			// We first build the toolchain twice to allow it to converge,
    			// as when we first bootstrap.
    			// See cmdbootstrap for a description of the overall process.
    			//
    			// On the builders, we skip this step: we assume that 'dist test' is
    			// already using the result of a clean build, and because of test sharding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // The message must not contain line breaks.
      // If unset, the message is "failed Expression: {Expression}".
      // +optional
      optional string message = 2;
    
      // Reason represents a machine-readable description of why this validation failed.
      // If this is the first validation in the list to fail, this reason, as well as the
      // corresponding HTTP response code, are used in the
      // HTTP response to the client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		configPodSandboxResult.Fail(kubecontainer.ErrConfigPodSandbox, message)
    		return
    	}
    
    	// Helper containing boilerplate common to starting all types of containers.
    	// typeName is a description used to describe this type of container in log messages,
    	// currently: "container", "init container" or "ephemeral container"
    	// metricLabel is the label used to describe this type of container in monitoring metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top