Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for cleanXcode (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/xcode-task-graph.dot

      xcodeWorkspaceWorkspaceSettings -> xcodeWorkspace -> xcode -> openXcode [dir=back]
    
      xcodeWorkspace[label=<xcodeWorkspace>]
    
      xcodeWorkspace -> cleanXcode [style=invis]
      {rank=same xcodeWorkspace cleanXcode}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleProjectIntegrationTest.groovy

            def project = rootXcodeProject.projectFile
            project.mainGroup.assertHasChildren(['build.gradle'])
            project.assertNoTargets()
        }
    
        @ToBeFixedForConfigurationCache
        def "cleanXcode remove all XCode generated project files"() {
            requireSwiftToolChain()
    
            given:
            buildFile << """
    apply plugin: 'swift-application'
    """
    
            when:
            succeeds("xcode")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    ====
    
    [[sec:xcode_tasks]]
    == Tasks
    
    The Xcode Plugin adds a number of tasks to your project.
    The main tasks that you will use are the `xcode`, `cleanXcode` and `openXcode` tasks.
    
    The following diagram shows the relationships between tasks added by this plugin.
    
    .Xcode Plugin default task graph
    image::xcode-task-graph.png[]
    
    [[sec:xcode_lifecycle_tasks]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    		// we can convert GETs to LISTs when needed.
    		scope := CleanScope(requestInfo)
    		verb = CanonicalVerb(strings.ToUpper(verb), scope)
    	}
    
    	// mark APPLY requests, WATCH requests and CONNECT requests correctly.
    	return CleanVerb(verb, req, requestInfo)
    }
    
    // CleanScope returns the scope of the request.
    func CleanScope(requestInfo *request.RequestInfo) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				else {
    					if(!obj.np.children("ul").length) { $("<ul />").appendTo(obj.np); }
    					obj.np.children("ul:eq(0)").append(o);
    				}
    
    				try {
    					obj.ot.clean_node(obj.op);
    					obj.rt.clean_node(obj.np);
    					if(!obj.op.find("> ul > li").length) {
    						obj.op.removeClass("jstree-open jstree-closed").addClass("jstree-leaf").children("ul").remove();
    					}
    				} catch (e) { }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/helpers.go

    	req *http.Request
    }
    
    func (lazy *lazyScope) String() string {
    	if lazy.req != nil {
    		ctx := lazy.req.Context()
    		requestInfo, ok := apirequest.RequestInfoFrom(ctx)
    		if ok {
    			return metrics.CleanScope(requestInfo)
    		}
    	}
    
    	return "unknown"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    				Namespace:         "",
    				IsResourceRequest: true,
    			},
    			expectedScope: "cluster",
    		},
    	}
    
    	for _, test := range testCases {
    		t.Run(test.name, func(t *testing.T) {
    			if CleanScope(test.requestInfo) != test.expectedScope {
    				t.Errorf("failed to clean scope: %v", test.requestInfo)
    			}
    		})
    	}
    }
    
    func TestCleanFieldValidation(t *testing.T) {
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		warning.AddWarning(req.Context(), "", w)
    	}
    
    	verb := strings.ToUpper(requestInfo.Verb)
    	resource := requestInfo.Resource
    	subresource := requestInfo.Subresource
    	scope := metrics.CleanScope(requestInfo)
    	supportedTypes := []string{
    		string(types.JSONPatchType),
    		string(types.MergePatchType),
    		string(types.ApplyPatchType),
    	}
    
    	var handlerFunc http.HandlerFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top