Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for Inaccessible (0.17 sec)

  1. src/internal/coverage/cfile/emit.go

    // in the state struct.
    func (s *emitState) openOutputFiles(metaHash [16]byte, metaLen uint64, which fileType) error {
    	fi, err := os.Stat(s.outdir)
    	if err != nil {
    		return fmt.Errorf("output directory %q inaccessible (err: %v); no coverage data written", s.outdir, err)
    	}
    	if !fi.IsDir() {
    		return fmt.Errorf("output directory %q not a directory; no coverage data written", s.outdir)
    	}
    
    	if (which & metaDataFile) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/range.go

    		nfor.Cond = ir.InitExpr([]ir.Node{a}, nfor.Cond)
    		if v1 == nil {
    			body = nil
    		} else {
    			body = []ir.Node{rangeAssign(nrange, hv1)}
    		}
    		// Zero hv1. This prevents hv1 from being the sole, inaccessible
    		// reference to an otherwise GC-able value during the next channel receive.
    		// See issue 15281.
    		body = append(body, ir.NewAssignStmt(base.Pos, hv1, nil))
    
    	case k == types.TSTRING:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. src/path/filepath/path_test.go

    		if err != nil {
    			t.Fatalf("expected no error return from Walk, got %s", err)
    		}
    		if len(errors) != 2 {
    			t.Errorf("expected 2 errors, got %d: %s", len(errors), errors)
    		}
    		// the inaccessible subtrees were marked manually
    		checkMarks(t, true)
    		errors = errors[0:0]
    
    		// 4) capture errors, stop after first error.
    		// mark respective subtrees manually
    		markTree(tree.entries[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    		escapedKeyProps:  t.escapedKeyProps,
    	}
    }
    
    // escapeKeyProps returns identifiers with Escape applied to each.
    // Identifiers that cannot be escaped are left as-is. They are inaccessible to CEL programs but are
    // are still needed internally to perform equality checks.
    func escapeKeyProps(idents []string) []string {
    	result := make([]string, len(idents))
    	for i, prop := range idents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  5. istioctl/pkg/workload/workload.go

    	portBehavior := "*"
    	if len(ports) > 0 {
    		portBehavior = strings.Join(ports, ",")
    	}
    
    	// 22: ssh is extremely common for VMs, and we do not want to make VM inaccessible if there is an issue
    	// 15090: prometheus
    	// 15021/15020: agent
    	excludePorts := "22,15090,15021"
    	if config.StatusPort != 15090 && config.StatusPort != 15021 {
    		if config.StatusPort != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tape.h

      // maintains a reference to these JVPs: if an `output_tensors` Tensor is
      // deleted, `DeleteGradient` should be called as soon as possible to free the
      // (now inaccessible) corresponding JVPs, but ForwardAccumulator's destructor
      // will release remaining references.
      //
      // This method is not thread-safe (and in general ForwardAccumulator is not
      // thread-safe).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  7. src/runtime/time.go

    	gp.timer.reset(gp.sleepWhen, 0)
    	return true
    }
    
    // A timeTimer is a runtime-allocated time.Timer or time.Ticker
    // with the additional runtime state following it.
    // The runtime state is inaccessible to package time.
    type timeTimer struct {
    	c    unsafe.Pointer // <-chan time.Time
    	init bool
    	timer
    }
    
    // newTimer allocates and returns a new time.Timer or time.Ticker (same layout)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

                return new AnnotationVisitor(accessibleTypes);
            }
        }
    
        private static boolean isAccessible(int access) {
            return (access & Opcodes.ACC_PRIVATE) == 0;
        }
    
        private static boolean isAccessibleConstant(int access, Object value) {
            return isConstant(access) && isAccessible(access) && value != null;
        }
    
        private static boolean isConstant(int access) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
    	//
    	// Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
    	// expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/ep_filters_test.go

    					{Address: "2.2.2.2", Weight: 6},
    					// 2 endpoints on network2, cluster2b
    					{Address: "2.2.2.20", Weight: 6},
    					{Address: "2.2.2.21", Weight: 6},
    					// 1 endpoint on network4 with no gateway (i.e. directly accessible)
    					{Address: "40.0.0.1", Weight: 6},
    				},
    				Weight: 42,
    			},
    		},
    		wantWorkloadMetadata: []string{
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1b",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top