Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for buildAll (0.45 sec)

  1. scripts/docs.py

        build_site_dist_path = build_site_path / lang
        if lang == "en":
            dist_path = site_path
            # Don't remove en dist_path as it might already contain other languages.
            # When running build_all(), that function already removes site_path.
            # All this is only relevant locally, on GitHub Actions all this is done through
            # artifacts and multiple workflows, so it doesn't matter if directories are
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. Makefile.core.mk

    # * Building a single docker image (generally during dev). In this case we just want to build the single binary alone
    BUILD_ALL ?= true
    define build-linux
    .PHONY: $(TARGET_OUT_LINUX)/$(shell basename $(1))
    ifeq ($(BUILD_ALL),true)
    $(TARGET_OUT_LINUX)/$(shell basename $(1)): build-linux
    	@:
    else
    $(TARGET_OUT_LINUX)/$(shell basename $(1)): $(TARGET_OUT_LINUX)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. tools/docker-builder/main.go

    		// Otherwise, build just the single item. proxyv2 is special since it is always built separately with tag=agent.
    		// Ideally we would just always build the targets we need but our Makefile is not that smart
    		env = append(env, "BUILD_ALL=false")
    	}
    
    	env = append(env,
    		// Build should already run in container, having multiple layers of docker causes issues
    		"BUILD_WITH_CONTAINER=0",
    	)
    	return env
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    		},
    		string(k8s.ListenerConditionResolvedRefs): {
    			reason:  string(k8s.ListenerReasonResolvedRefs),
    			message: "No errors found",
    		},
    	}
    
    	ok := true
    	tls, err := buildTLS(r, l.TLS, obj, kube.IsAutoPassthrough(obj.Labels, l))
    	if err != nil {
    		listenerConditions[string(k8s.ListenerConditionResolvedRefs)].error = err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top