Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 338 for convenient (1.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "type": "object"
        },
        "io.k8s.apimachinery.pkg.api.resource.Quantity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    // 	}
    //
    // func (obj *MyAwesomeAPIObject) SetGroupVersionKind(gvk *metav1.GroupVersionKind) { metav1.UpdateTypeMeta(obj,gvk) }; GroupVersionKind() *GroupVersionKind
    //
    // TypeMeta is provided here for convenience. You may use it directly from this package or define
    // your own with the same fields.
    //
    // +k8s:deepcopy-gen=false
    // +protobuf=true
    // +k8s:openapi-gen=true
    message TypeMeta {
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ManagedTypeDslIntegrationTest.groovy

                city = 'Melbourne'
            }
        }
    }
    '''
    
            when:
            run "show"
    
            then:
            output.contains("barry lives in Melbourne")
        }
    
        def "can use convenience methods to configure property of scalar type"() {
            buildFile << '''
    @Managed interface Thing {
        int getNumber()
        void setNumber(int i)
        File getFile()
        void setFile(File f)
    }
    
    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/config/config.go

    package config
    
    import (
    	"encoding/json"
    	"os"
    	"strings"
    
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // Config is a wrapper around telemetry.UploadConfig that provides some
    // convenience methods for checking the contents of a report.
    type Config struct {
    	*telemetry.UploadConfig
    	program         map[string]bool
    	goos            map[string]bool
    	goarch          map[string]bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/handling-errors.md

        You could also use `from starlette.requests import Request` and `from starlette.responses import JSONResponse`.
    
        **FastAPI** provides the same `starlette.responses` as `fastapi.responses` just as a convenience for you, the developer. But most of the available responses come directly from Starlette. The same with `Request`.
    
    ## Override the default exception handlers
    
    **FastAPI** has some default exception handlers.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

        }
    
        public GitFileRepository(File parentDirectory) {
            this("repo", parentDirectory);
        }
    
        /**
         * Returns the underlying Git object from JGit.
         *
         * Please consider adding more convenience methods to this fixture over using "raw" Git APIs.
         */
        public Git getGit() {
            return git;
        }
    
        @Override
        public String getName() {
            return repoName;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/mapper.go

    */
    
    package resource
    
    import (
    	"fmt"
    	"reflect"
    
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // Mapper is a convenience struct for holding references to the interfaces
    // needed to create Info for arbitrary objects.
    type mapper struct {
    	// localFn indicates the call can't make server requests
    	localFn func() bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 03 10:53:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/doc.go

    //
    // Note that Tag that is returned by Match and MatchString may differ from any
    // of the supported languages, as it may contain carried over settings from
    // the user tags.
    // This may be inconvenient when your application has some additional
    // locale-specific data for your supported languages.
    // Match and MatchString both return the index of the matched supported tag
    // to simplify associating such data with the matched tag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/path-operation-configuration.md

    !!! note "Technical Details"
        You could also use `from starlette import status`.
    
        **FastAPI** provides the same `starlette.status` as `fastapi.status` just as a convenience for you, the developer. But it comes directly from Starlette.
    
    ## Tags
    
    You can add tags to your *path operation*, pass the parameter `tags` with a `list` of `str` (commonly just one `str`):
    
    === "Python 3.10+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

         *
         * It is the Gradle runtime + buildSrc's contributions.
         * This is used as the parent scope for the root project's build script, and all script plugins.
         *
         * This is only on this object for convenience due to legacy.
         * Pre Gradle 6, what is now called {@link SettingsInternal#getBaseClassLoaderScope()} was used as the equivalent scope for project scripts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top