Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,170 for createFn (0.16 sec)

  1. guava/src/com/google/common/io/TempFileCreator.java

        // https://github.com/google/guava/issues/4011#issuecomment-770020802
        // So we can create files there with any permissions and still get security from the isolation.
        return new JavaIoCreator();
      }
    
      /**
       * Creates the permissions normally used for Windows filesystems, looking up the user afresh, even
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

         * @param factory Instance created by the Factory implementation
         */
        public synchronized <T> T withSystemProperty(String propertyName, String value, Factory<T> factory) {
            String originalValue = overrideProperty(propertyName, value);
    
            try {
                return factory.create();
            } finally {
                restoreProperty(propertyName, originalValue);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/imagepolicy/v1alpha1/types_swagger_doc_generated.go

    	"image": "This can be in the form image:tag or image@SHA:012345679abcdef.",
    }
    
    func (ImageReviewContainerSpec) SwaggerDoc() map[string]string {
    	return map_ImageReviewContainerSpec
    }
    
    var map_ImageReviewSpec = map[string]string{
    	"":            "ImageReviewSpec is a description of the pod creation request.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensionsTest.kt

                    )
                }
            }
    
            assertThat(
                events,
                equalTo(listOf("created", "configured", "added"))
            )
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/16865")
        fun `given string notation, 'create' extension will create and configure dependency`() {
    
            val dependencyHandlerMock = newDependencyHandlerMock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        create-cloud-nat-router
        write-cluster-location
        write-cluster-name
        create-autoscaler-config
        create-master
        create-nodes-firewall
        create-nodes-template
        if [[ "${KUBE_CREATE_NODES}" == "true" ]]; then
          # Windows nodes take longer to boot and setup so create them first.
          create-windows-nodes
          create-linux-nodes
        fi
        check-cluster
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. tests/upsert_test.go

    		t.Errorf("user should be created with search value")
    	}
    
    	DB.FirstOrCreate(&user3, map[string]interface{}{"name": "find or create 2"})
    	if user3.Name != "find or create 2" || user3.ID == 0 {
    		t.Errorf("user should be created with inline search value")
    	}
    
    	DB.Where(&User{Name: "find or create 3"}).Attrs("age", 44).FirstOrCreate(&user4)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/ConfigurationSpec.groovy

            switch (dsl) {
                case GradleDsl.GROOVY:
                    return super.generateSection(dsl)
                case GradleDsl.KOTLIN:
                    def creation = isCreate.get()
                    def prefix =  creation ?"val $name by configurations.creating ":"${name}.run "
                    return """$prefix {
        ${innerDsl(dsl)}
    }"""
            }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    						})
    						switch {
    						// Newly created Envoy filter.
    						case createSet.Contains(key):
    							cfg := creates[key]
    							// If the filter is newly created, it should not have a previous version.
    							if previousVersion != nil {
    								t.Errorf("Created Envoy filter %s/%s already existed", ns, ef.Name)
    							}
    							// Validate that the generated filter is the same as the one created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultDependencyMetadataFactoryTest.groovy

            then:
            created.constraint
            selector.group == "g"
            selector.module == "m"
            selector.version == "1"
    
            and:
            created.artifacts.empty
            created.excludes.empty
            !created.force
            !created.transitive
            !created.changing
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/body-updates.md

    as optional (with default values or `None`).
    
        To distinguish from the models with all optional values for **updates** and models with required values for **creation**, you can use the ideas described in [Extra Models](extra-models.md){.internal-link target=_blank}....
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top