Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 63 of 63 for buildAll (0.15 sec)

  1. 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)
  2. 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)
  3. 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