Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for testprofile (0.14 sec)

  1. src/cmd/go/internal/test/testflag.go

    	// directory, but 'go test' defaults it to the working directory of the 'go'
    	// command. Set it explicitly if it is needed due to some other flag that
    	// requests output.
    	if testProfile() != "" && !outputDirSet {
    		injectedFlags = append(injectedFlags, "-test.outputdir="+testOutputDir.getAbs())
    	}
    
    	// If the user is explicitly passing -help or -h, show output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers.go

    		ProfileType: runtimeapi.SecurityProfile_Unconfined,
    	}, nil
    }
    
    func getAppArmorProfile(pod *v1.Pod, container *v1.Container) (*runtimeapi.SecurityProfile, string, error) {
    	profile := apparmor.GetProfile(pod, container)
    	if profile == nil {
    		return nil, "", nil
    	}
    
    	var (
    		securityProfile   *runtimeapi.SecurityProfile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. operator/pkg/verifier/verifier.go

    			by := util.ToYAML(un)
    			unmergedIOP, err := operator_istio.UnmarshalIstioOperator(by, true)
    			if err != nil {
    				v.reportFailure(kind, name, namespace, err)
    				return err
    			}
    			profile := manifest.GetProfile(unmergedIOP)
    			iop, err := manifest.GetMergedIOP(by, profile, v.manifestsPath, v.controlPlaneOpts.Revision,
    				v.client, v.logger)
    			if err != nil {
    				v.reportFailure(kind, name, namespace, err)
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            }
    
            @Override
            public void applyTo(StartParameterInternal settings, Origin origin) {
                settings.setProfile(true);
            }
        }
    
        public static class ContinueOption extends BooleanBuildOption<StartParameterInternal> {
            public static final String LONG_OPTION = "continue";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                startParameter.setDryRun(decoder.readBoolean());
                startParameter.setRerunTasks(decoder.readBoolean());
                startParameter.setProfile(decoder.readBoolean());
                startParameter.setContinueOnFailure(decoder.readBoolean());
                startParameter.setOffline(decoder.readBoolean());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  6. operator/pkg/manifest/shared.go

    	}
    	found := false
    	for _, o := range objs {
    		if o.Kind == name.IstioOperator {
    			if found {
    				return true, nil
    			}
    			found = true
    		}
    	}
    	return false, nil
    }
    
    func GetProfile(iop *iopv1alpha1.IstioOperator) string {
    	profile := "default"
    	if iop != nil && iop.Spec != nil && iop.Spec.Profile != "" {
    		profile = iop.Spec.Profile
    	}
    	return profile
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        assertThat(ClassPath.getClassPathEntries(classloader))
            .containsExactly(new File("/c:/Documents and Settings/"), classloader);
      }
    
      // https://github.com/google/guava/issues/2152
      public void testToFile() throws Exception {
        assertThat(ClassPath.toFile(new URL("file:///c:/Documents%20and%20Settings/")))
            .isEqualTo(new File("/c:/Documents and Settings/"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            return projectDir;
        }
    
        /**
         * Specifies if a profile report should be generated.
         *
         * @param profile true if a profile report should be generated
         */
        public void setProfile(boolean profile) {
            this.profile = profile;
        }
    
        /**
         * Returns true if a profile report will be generated.
         */
        public boolean isProfile() {
            return profile;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top