Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for uber (0.06 sec)

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

    					name := info.Name()
    					if path != file && (isBadEmbedName(name) || ((name[0] == '.' || name[0] == '_') && !all)) {
    						// Ignore bad names, assuming they won't go into modules.
    						// Also avoid hidden files that user may not know about.
    						// See golang.org/issue/42328.
    						if info.IsDir() {
    							return fs.SkipDir
    						}
    						return nil
    					}
    					if info.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Invalid header: {0} */
        public static final String ERRORS_invalid_header_for_request_file = "{errors.invalid_header_for_request_file}";
    
        /** The key of the message: Could not delete logged in user. */
        public static final String ERRORS_could_not_delete_logged_in_user = "{errors.could_not_delete_logged_in_user}";
    
        /** The key of the message: Unauthorized request. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. cmd/server_test.go

    			c.Assert(strings.Contains(string(getContent), expectedStr), true)
    		}
    	}
    }
    
    // TestListObjectsV2HadoopUAHandler - Test ListObjectsV2 call with max-keys=2 and Hadoop User-Agent
    func (s *TestSuiteCommon) TestListObjectsV2HadoopUAHandler(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// HTTP request to create the bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            executer.inDirectory(projectDir2)
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files: [lib1.jar.txt, lib1.jar]") == 2
    
            // From the Gradle user home cache
            output.count("Transformed") == 0
        }
    
        private void setupProjectInDir(TestFile projectDir) {
            projectDir.file("build.gradle") << resolveTask << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    			expectedCondition:            "ScaleUpLimit",
    			scaleUpRules:                 generateScalingRules(0, 0, 1, 60, 0),
    			name:                         "scaleUpLimit is the limit because scaleUpLimit < maxReplicas with user policies",
    		},
    		{
    			currentReplicas:              1000,
    			prenormalizedDesiredReplicas: 3,
    			specMinReplicas:              3,
    			specMaxReplicas:              2000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    		in, out := &in.VolumeMounts, &out.VolumeMounts
    		*out = make([]VolumeMountStatus, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.User != nil {
    		in, out := &in.User, &out.User
    		*out = new(ContainerUser)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		in, out := &in.VolumeMounts, &out.VolumeMounts
    		*out = make([]VolumeMountStatus, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.User != nil {
    		in, out := &in.User, &out.User
    		*out = new(ContainerUser)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy_test.go

    					ManualSelector: ptr.To(true),
    					Parallelism:    ptr.To[int32](1),
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Annotations["foo"] = "bar"
    			},
    		},
    		"deleting user annotation": {
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

            metadata:
              labels:
                {{/* security.istio.io/tlsMode: istio must be set by user, if gRPC is using mTLS initialization code. We can't set it automatically. */}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    // replace all use of %2 with indices
    //
    struct OptimizeTopK : public OpRewritePattern<TFL::TopKV2Op> {
      using OpRewritePattern::OpRewritePattern;
    
      // It computes the last dim k of slice size of value.user.
      // If value has no use then return 0.
      std::optional<int32_t> ComputeSliceK(Value value) const {
        if (value.use_empty()) return 0;
        auto slice_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top