Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,292 for greats (0.15 sec)

  1. src/fmt/example_test.go

    	// Arrays and slices are formatted by applying the format to each element.
    	greats := [5]string{"Kitano", "Kobayashi", "Kurosawa", "Miyazaki", "Ozu"}
    	fmt.Printf("%v %q\n", greats, greats)
    	// Result: [Kitano Kobayashi Kurosawa Miyazaki Ozu] ["Kitano" "Kobayashi" "Kurosawa" "Miyazaki" "Ozu"]
    
    	kGreats := greats[:3]
    	fmt.Printf("%v %q %#v\n", kGreats, kGreats, kGreats)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    				return nil, fmt.Errorf("failed to create new object (Create for %v): %v", scope.Kind, err)
    			}
    			obj = scope.FieldManager.UpdateNoErrors(liveObj, obj, managerOrUserAgent(options.FieldManager, req.UserAgent()))
    			admit = fieldmanager.NewManagedFieldsValidatingAdmissionController(admit)
    
    			if mutatingAdmission, ok := admit.(admission.MutationInterface); ok && mutatingAdmission.Handles(admission.Create) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. callbacks/create.go

    				if i, ok := value.(BeforeCreateInterface); ok {
    					called = true
    					db.AddError(i.BeforeCreate(tx))
    				}
    			}
    			return called
    		})
    	}
    }
    
    // Create create hook
    func Create(config *Config) func(db *gorm.DB) {
    	supportReturning := utils.Contains(config.CreateClauses, "RETURNING")
    
    	return func(db *gorm.DB) {
    		if db.Error != nil {
    			return
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-create-project.png

    teamcity-create-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    
    namespace mlir {
    
    // Creates a pass that breaks up an island with multiple ops into multiple
    // islands, each with a single op.
    std::unique_ptr<OperationPass<ModuleOp>> CreateBreakUpIslandsPass();
    
    // Creates a pass that converts mlir functions consisting of mlir ops into a
    // tf_executor dialect as a single island.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    func NodeRules() []rbacv1.PolicyRule {
    	nodePolicyRules := []rbacv1.PolicyRule{
    		// Needed to check API access.  These creates are non-mutating
    		rbacv1helpers.NewRule("create").Groups(authenticationGroup).Resources("tokenreviews").RuleOrDie(),
    		rbacv1helpers.NewRule("create").Groups(authorizationGroup).Resources("subjectaccessreviews", "localsubjectaccessreviews").RuleOrDie(),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/log/slog/doc.go

    How this qualification is displayed depends on the handler.
    [TextHandler] separates the group and attribute names with a dot.
    [JSONHandler] treats each group as a separate JSON object, with the group name as the key.
    
    Use [Group] to create a Group attribute from a name and a list of key-value pairs:
    
    	slog.Group("request",
    	    "method", r.Method,
    	    "url", r.URL)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/apiclient/idempotency.go

    				}
    				if _, err := client.CoreV1().ConfigMaps(cm.ObjectMeta.Namespace).Create(ctx, cm, metav1.CreateOptions{}); err != nil {
    					lastError = errors.Wrap(err, "unable to create ConfigMap")
    					return false, nil
    				}
    			}
    			return true, nil
    		})
    	if err == nil {
    		return nil
    	}
    	return lastError
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

                    dependencyHandler.create(it) as ModuleDependency
                )
            }
        }
    
        private
        fun create(notation: String, dependencyConfiguration: ExternalModuleDependency.() -> Unit) =
            (dependencyHandler.create(notation) as ExternalModuleDependency).apply(dependencyConfiguration)
    }
    
    
    /**
     * Creates a dependency on a project without adding it to a configuration.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. helm/minio/values.yaml

    ##
    podDisruptionBudget:
      enabled: false
      maxUnavailable: 1
    
    ## Specify the service account to use for the MinIO pods. If 'create' is set to 'false'
    ## and 'name' is left unspecified, the account 'default' will be used.
    serviceAccount:
      create: true
      ## The name of the service account to use. If 'create' is 'true', a service account with that name
      ## will be created.
      name: "minio-sa"
    
    metrics:
      serviceMonitor:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (1)
Back to top